Skip to content

Instantly share code, notes, and snippets.

@asimonok
Created November 16, 2015 09:50
Show Gist options
  • Save asimonok/d2e4dc27e6410b3b108e to your computer and use it in GitHub Desktop.
Save asimonok/d2e4dc27e6410b3b108e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul>
<li class="item-1">item 1</li>
<li class="item-2">item 2</li>
<li class="item-3">item 3</li>
</ul>
// ----
// libsass (v3.2.5)
// ----
@for $i from 1 through 3{
.item-#{$i}{
padding-left:20px*$i;
background:#424242*$i;
}
}
.item-1 {
padding-left: 20px;
background: #424242;
}
.item-2 {
padding-left: 40px;
background: #848484;
}
.item-3 {
padding-left: 60px;
background: #c6c6c6;
}
<ul>
<li class="item-1">item 1</li>
<li class="item-2">item 2</li>
<li class="item-3">item 3</li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment