Skip to content

Instantly share code, notes, and snippets.

@aniketpant
Created June 30, 2014 08:57
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 aniketpant/925757ff999824ec0270 to your computer and use it in GitHub Desktop.
Save aniketpant/925757ff999824ec0270 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.9)
// Compass (v1.0.0.alpha.20)
// ----
$baseColor: #FFCC00;
@for $i from 1 to 5 {
#mainbody :nth-child(#{$i}) {
border-color: adjust-color($baseColor, $green: ($i - 1) * 1);
}
$i: $i + 1;
}
#mainbody :nth-child(1) {
border-color: #ffcc00;
}
#mainbody :nth-child(2) {
border-color: #ffcd00;
}
#mainbody :nth-child(3) {
border-color: #ffce00;
}
#mainbody :nth-child(4) {
border-color: #ffcf00;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment