Skip to content

Instantly share code, notes, and snippets.

@worst-developer
Created January 18, 2016 11:03
Show Gist options
  • Save worst-developer/c96dda02555394c82d39 to your computer and use it in GitHub Desktop.
Save worst-developer/c96dda02555394c82d39 to your computer and use it in GitHub Desktop.
//*****scss*****
$colors: #f74a3a #fcbe26 #8cc687 #4da5f2 #b01395;
$i:0;
.menu-main ul li {
@each $col in red, orange, green, blue, purple {
$i: $i + 1;
&.#{$col} {
background: nth($colors, $i);
}
}
}
//****css out*****
.menu-main ul li.red {
background: #f74a3a;
}
.menu-main ul li.orange {
background: #fcbe26;
}
.menu-main ul li.green {
background: #8cc687;
}
.menu-main ul li.blue {
background: #4da5f2;
}
.menu-main ul li.purple {
background: #b01395;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment