Created
November 24, 2014 12:55
-
-
Save adamsir/27fab5ae16710e44b2cb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<ul> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
</ul> |
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
// ---- | |
// libsass (v3.0.1) | |
// ---- | |
// | |
// CODE EXAMPLE | |
// | |
$nav: #6fc2da #4fb1ce #36aace #1e95b7 #0d7591 #086379 #025163 #004350; | |
@mixin colorPalette($palette) { | |
$i: 1; | |
@each $color in $palette { | |
&:nth-child(#{$i}) { | |
} | |
$i: $i + 1; | |
} | |
} | |
// DEMO | |
li { | |
@include colorPalette($nav); | |
} |
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
<ul> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment