Skip to content

Instantly share code, notes, and snippets.

@fliptheweb
Created April 25, 2014 14:13
Show Gist options
  • Save fliptheweb/11291004 to your computer and use it in GitHub Desktop.
Save fliptheweb/11291004 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.5)
// Compass (v1.0.0.alpha.18)
// ----
$color-map: (1: red, 2: blue, 3: green);
@each $color-i, $color-val in $color-map {
.foo-#{$color-i} {
color: $color-val
}
}
.foo-1 {
color: red;
}
.foo-2 {
color: blue;
}
.foo-3 {
color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment