Last active
December 24, 2015 05:09
-
-
Save katydecorah/6748663 to your computer and use it in GitHub Desktop.
This file contains 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
$labelInc: 35; | |
@each $category in $categories { | |
.label-#{$category} { | |
background: rgba(adjust-hue($blue,$labelInc),0.5); | |
border-color: rgba(adjust-hue($blue,$labelInc),0.5); | |
&:hover {background: darken(rgba(adjust-hue($blue,$labelInc),0.5),15%);} | |
} | |
$labelInc: $labelInc + 35; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment