Last active
January 26, 2016 16:37
-
-
Save 8lane/e34410ca8005687c720f 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
$tracks-total: 10; | |
%tracks-used { | |
font-family: FontAwesome; | |
content: "\f058"; | |
font-size: 23px; | |
} | |
.anw-account__demo__counters { | |
color: $anw-brand-light-grey-4; | |
@for $i from 0 through $tracks-total { | |
&[data-tracks="#{$i}"] { | |
li:nth-child(-n+#{$tracks-total - $i}) { | |
color: $anw-brand-5; | |
.fa:before { | |
@extend %tracks-used; | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment