Skip to content

Instantly share code, notes, and snippets.

@8lane
Last active January 26, 2016 16:37
Show Gist options
  • Save 8lane/e34410ca8005687c720f to your computer and use it in GitHub Desktop.
Save 8lane/e34410ca8005687c720f to your computer and use it in GitHub Desktop.
$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