Skip to content

Instantly share code, notes, and snippets.

@halfzebra
Last active October 14, 2015 13:33
Show Gist options
  • Save halfzebra/1e2428d8e938eecba016 to your computer and use it in GitHub Desktop.
Save halfzebra/1e2428d8e938eecba016 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
li {
@for $i from 1 through 8 {
&:nth-of-type(#{$i}) {
transition-delay: 0.1s * $i;
}
}
}
li:nth-of-type(1) {
transition-delay: 0.1s;
}
li:nth-of-type(2) {
transition-delay: 0.2s;
}
li:nth-of-type(3) {
transition-delay: 0.3s;
}
li:nth-of-type(4) {
transition-delay: 0.4s;
}
li:nth-of-type(5) {
transition-delay: 0.5s;
}
li:nth-of-type(6) {
transition-delay: 0.6s;
}
li:nth-of-type(7) {
transition-delay: 0.7s;
}
li:nth-of-type(8) {
transition-delay: 0.8s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment