Created
August 28, 2013 14:39
-
-
Save Usse/6366749 to your computer and use it in GitHub Desktop.
Less H1 dimensions generator
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
@iterations: 6; | |
.h(@index) when (@index > 0) { | |
h@{index} { | |
font-size: 72px - @index*10; | |
} | |
.h(@index - 1); | |
} | |
.h(0) {} | |
.h(@iterations); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment