Skip to content

Instantly share code, notes, and snippets.

@javierarques
Created December 11, 2014 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javierarques/8d6250b3593ef0da975f to your computer and use it in GitHub Desktop.
Save javierarques/8d6250b3593ef0da975f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
$list: yellow tomato red green;
@for $i from 1 to length($list) {
.color-#{$i} {
background: nth($list, $i);
}
}
.color-1 {
background: yellow;
}
.color-2 {
background: tomato;
}
.color-3 {
background: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment