comparison static/bootstrap/less/responsive.less @ 61:130eccd396d8

Now using Boostrap with LESS.
author Ludovic Chabant <ludovic@chabant.com>
date Wed, 06 Feb 2013 08:22:31 -0800
parents
children a5a3d454eac9
comparison
equal deleted inserted replaced
60:8250c977bc50 61:130eccd396d8
1 /*!
2 * Bootstrap Responsive v2.2.2
3 *
4 * Copyright 2012 Twitter, Inc
5 * Licensed under the Apache License v2.0
6 * http://www.apache.org/licenses/LICENSE-2.0
7 *
8 * Designed and built with all the love in the world @twitter by @mdo and @fat.
9 */
10
11
12 // Responsive.less
13 // For phone and tablet devices
14 // -------------------------------------------------------------
15
16
17 // IE10 Metro responsive
18 // Required for Windows 8 Metro split-screen snapping with IE10
19 // Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
20
21 @-ms-viewport{
22 width: device-width;
23 }
24
25
26 // REPEAT VARIABLES & MIXINS
27 // -------------------------
28 // Required since we compile the responsive stuff separately
29
30 @import "variables.less"; // Modify this for custom colors, font-sizes, etc
31 @import "mixins.less";
32
33
34 // RESPONSIVE CLASSES
35 // ------------------
36
37 @import "responsive-utilities.less";
38
39
40 // MEDIA QUERIES
41 // ------------------
42
43 // Large desktops
44 @import "responsive-1200px-min.less";
45
46 // Tablets to regular desktops
47 @import "responsive-768px-979px.less";
48
49 // Phones to portrait tablets and narrow desktops
50 @import "responsive-767px-max.less";
51
52
53 // RESPONSIVE NAVBAR
54 // ------------------
55
56 // From 979px and below, show a button to toggle navbar contents
57 @import "responsive-navbar.less";