You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

control-directives.scss 265B

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