Skip to content

Instantly share code, notes, and snippets.

@jlong
Created January 14, 2014 15:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlong/8420534 to your computer and use it in GitHub Desktop.
Save jlong/8420534 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
$sections: red, gold, orange, grey;
@each $i in $sections {
.section-#{$i} {
background-color:$i;
p {
color:lighten($i, 45%);
}
}
}
.section-red {
background-color: red;
}
.section-red p {
color: #ffe5e5;
}
.section-gold {
background-color: gold;
}
.section-gold p {
color: #fffbe5;
}
.section-orange {
background-color: orange;
}
.section-orange p {
color: #fff6e5;
}
.section-gray {
background-color: gray;
}
.section-gray p {
color: #f3f3f3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment