Created
January 21, 2014 18:28
-
-
Save erikflowers/8545409 to your computer and use it in GitHub Desktop.
experiment in non-responsifying Bootstrap 3, for whatever reason.... :(
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
// Media queries breakpoints | |
// -------------------------------------------------- | |
// Extra small screen / phone | |
// Note: Deprecated @screen-xs and @screen-phone as of v3.0.1 | |
@screen-xs: 480px; | |
@screen-xs-min: @screen-xs; | |
@screen-phone: @screen-xs-min; | |
// Small screen / tablet | |
// Note: Deprecated @screen-sm and @screen-tablet as of v3.0.1 | |
@screen-sm: 480px; | |
@screen-sm-min: @screen-sm; | |
@screen-tablet: @screen-sm-min; | |
// Medium screen / desktop | |
// Note: Deprecated @screen-md and @screen-desktop as of v3.0.1 | |
@screen-md: 19999px; | |
@screen-md-min: @screen-md; | |
@screen-desktop: @screen-md-min; | |
// Large screen / wide desktop | |
// Note: Deprecated @screen-lg and @screen-lg-desktop as of v3.0.1 | |
@screen-lg: 12000px; | |
@screen-lg-min: @screen-lg; | |
@screen-lg-desktop: @screen-lg-min; | |
@grid-float-breakpoint: 768px; | |
// Container sizes | |
// -------------------------------------------------- | |
// Small screen / tablet | |
@container-tablet: ((940 + @grid-gutter-width)); | |
@container-sm: @container-tablet; | |
// Medium screen / desktop | |
@container-desktop: ((940px + @grid-gutter-width)); | |
@container-md: @container-desktop; | |
// Large screen / wide desktop | |
@container-large-desktop: ((1140px + @grid-gutter-width)); | |
@container-lg: @container-large-desktop; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment