Skip to content

Instantly share code, notes, and snippets.

@Coder2012
Created February 1, 2016 15:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Coder2012/b0139ca0412fbdf79891 to your computer and use it in GitHub Desktop.
Save Coder2012/b0139ca0412fbdf79891 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.2)
// ----
.ratings {
@for $i from 0 through 4 {
&--#{$i} & {
&__item:nth-of-type(n+#{$i+1}){
background-color: colour(grey, middle-grey);
}
}
}
}
.ratings--0 .ratings__item:nth-of-type(n+1) {
background-color: colour(grey, middle-grey);
}
.ratings--1 .ratings__item:nth-of-type(n+2) {
background-color: colour(grey, middle-grey);
}
.ratings--2 .ratings__item:nth-of-type(n+3) {
background-color: colour(grey, middle-grey);
}
.ratings--3 .ratings__item:nth-of-type(n+4) {
background-color: colour(grey, middle-grey);
}
.ratings--4 .ratings__item:nth-of-type(n+5) {
background-color: colour(grey, middle-grey);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment