diff options
| author | Kevin <[email protected]> | 2013-04-27 18:47:47 +0200 |
|---|---|---|
| committer | Kevin <[email protected]> | 2013-04-27 18:47:47 +0200 |
| commit | 9ce7f22e991804cd08c4dc612cd929d07dc0a28f (patch) | |
| tree | a34e28de0477c1f668aef8244d881e00d7cd9391 /less/variables.less | |
| parent | 8ae9c6ab34128ea863343abaeff39ca7c6f4618c (diff) | |
| download | bootstrap-9ce7f22e991804cd08c4dc612cd929d07dc0a28f.tar.xz bootstrap-9ce7f22e991804cd08c4dc612cd929d07dc0a28f.zip | |
Adding media queries breakpoints variables
Diffstat (limited to 'less/variables.less')
| -rw-r--r-- | less/variables.less | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/less/variables.less b/less/variables.less index 1c19fd514..e09547e8a 100644 --- a/less/variables.less +++ b/less/variables.less @@ -369,6 +369,22 @@ @component-offset-horizontal: 180px; +// Media queries breakpoints +// -------------------------------------------------- + +// Tiny screen / phone +@screen-tiny: 480px; +@screen-phone: @screen-tiny; +// Small screen / tablet +@screen-small: 768px; +@screen-tablet: @screen-small; +// Medium screen / desktop +@screen-medium: 992px; +@screen-desktop: @screen-medium; +// Large screen / wide desktop +@screen-large: 1200px; +@screen-large-desktop: @screen-large; + // Grid system // -------------------------------------------------- @@ -378,4 +394,4 @@ // Padding, to be divided by two and applied to the left and right of all columns @grid-gutter-width: 30px; // Point at which the navbar stops collapsing -@grid-float-breakpoint: 768px; +@grid-float-breakpoint: @screen-tablet; |
