1 2 3 4 5 6 7 8 9 10 11 12 13 14
@for $i from 1 through 3 { .item-#{$i} { width: 2em * $i; } } @while $i > 0 { .item-#{$i} { width: 2em * $i; } $i: $i - 2; } @each $animal in puma, sea-slug, egret, salamander { .#{$animal}-icon { background-image: url('/images/#{$animal}.png'); } }