| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | /*! * Bootstrap Responsive v2.2.2 * * Copyright 2012 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */// Responsive.less// For phone and tablet devices// -------------------------------------------------------------// IE10 Metro responsive// Required for Windows 8 Metro split-screen snapping with IE10// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/@-ms-viewport{  width: device-width;}// REPEAT VARIABLES & MIXINS// -------------------------// Required since we compile the responsive stuff separately@import "variables.less"; // Modify this for custom colors, font-sizes, etc@import "mixins.less";// RESPONSIVE CLASSES// ------------------@import "responsive-utilities.less";// MEDIA QUERIES// ------------------// Large desktops@import "responsive-1200px-min.less";// Tablets to regular desktops@import "responsive-768px-979px.less";// Phones to portrait tablets and narrow desktops@import "responsive-767px-max.less";// RESPONSIVE NAVBAR// ------------------// From 979px and below, show a button to toggle navbar contents@import "responsive-navbar.less";
 |