Created
January 18, 2016 11:03
-
-
Save worst-developer/c96dda02555394c82d39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//*****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