Created
August 13, 2014 19:46
-
-
Save jaggy/0a2d2f91c3a2384652d6 to your computer and use it in GitHub Desktop.
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
$column-name = col; | |
$column-count = 32; | |
$column-width = 2rem; | |
for $index in 1..$column-count { | |
.{$column-name}-{$index} { | |
width: ($index * $column-width) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.col-1 {
width: 2rem;
}
.col-2 {
width: 4rem;
}
...