Last active
August 29, 2015 14:02
-
-
Save AntonKL/300c87f40332a229cb07 to your computer and use it in GitHub Desktop.
Psudocode for susy
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
$small: ( | |
columns: 4, | |
); | |
$medium: ( | |
columns: 24, | |
); | |
$large: ( | |
columns: 24, | |
); | |
.foo { | |
span 2 | |
at medium | |
span 6 | |
at large | |
span 12 | |
} | |
#RESULT I WANT for .foo | |
in small = 50% (minus some gutter) | |
in medium = 25% (minus some gutter) | |
in large = 50% (minus some gutter) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment