Created
May 13, 2014 17:24
-
-
Save hmammana/9b816d931cf28148d33d to your computer and use it in GitHub Desktop.
This file contains 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
/* estas reglas aplican para todas las resoluciones igual */ | |
[class*="-1"] { width: 8.33333333%; } | |
[class*="-2"] { width: 16.66666667%; } | |
[class*="-3"] { width: 25%; } | |
[class*="-4"] { width: 33.33333333%; } | |
[class*="-5"] { width: 41.66666667%; } | |
[class*="-6"] { width: 50%; } | |
[class*="-7"] { width: 58.33333333%; } | |
[class*="-8"] { width: 66.66666667%; } | |
[class*="-9"] { width: 75%; } | |
[class*="-10"] { width: 83.33333333%; } | |
[class*="-11"] { width: 91.66666667%; } | |
[class*="-12"] { width: 100%; } | |
/* dentro de cada breakpoint */ | |
/* en el m */ | |
[class*="s-"] { width: auto; } | |
[class*="l-"] { width: auto; } | |
/* en el l */ | |
[class*="s-"] { width: auto; } | |
[class*="m-"] { width: auto; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment