Last active
October 14, 2015 13:33
-
-
Save halfzebra/1e2428d8e938eecba016 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
li { | |
@for $i from 1 through 8 { | |
&:nth-of-type(#{$i}) { | |
transition-delay: 0.1s * $i; | |
} | |
} | |
} |
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
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