Skip to content

Instantly share code, notes, and snippets.

@mateuszkocz
Created August 15, 2013 09:30
Show Gist options
  • Save mateuszkocz/6239575 to your computer and use it in GitHub Desktop.
Save mateuszkocz/6239575 to your computer and use it in GitHub Desktop.
@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