Created
November 25, 2014 13:49
-
-
Save oropesa/09f5e6220768230486fd to your computer and use it in GitHub Desktop.
Bootstrap Screen. Add size 'Extra Large'
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
/** | |
* BOOTSTRAP: SIZE EXTRA LARGE | |
*/ | |
@screen-xl-min: 1480px; | |
@screen-lg-max: (@screen-xl-min - 1); | |
@container-extra-large-desktop: ((1420px + @grid-gutter-width)); | |
@container-xl: @container-extra-large-desktop; | |
@modal-xl: 1100px; | |
.container { | |
@media (min-width: @screen-xl-min) { | |
width: @container-xl; | |
} | |
} | |
@media (min-width: @screen-xl-min) { | |
.make-grid(xl); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment