responsive.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. // Responsive.less
  11. // For phone and tablet devices
  12. // -------------------------------------------------------------
  13. // IE10 Metro responsive
  14. // Required for Windows 8 Metro split-screen snapping with IE10
  15. // Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
  16. @-ms-viewport{
  17. width: device-width;
  18. }
  19. // REPEAT VARIABLES & MIXINS
  20. // -------------------------
  21. // Required since we compile the responsive stuff separately
  22. @import "variables.less"; // Modify this for custom colors, font-sizes, etc
  23. @import "mixins.less";
  24. // RESPONSIVE CLASSES
  25. // ------------------
  26. @import "responsive-utilities.less";
  27. // MEDIA QUERIES
  28. // ------------------
  29. // Large desktops
  30. @import "responsive-1200px-min.less";
  31. // Tablets to regular desktops
  32. @import "responsive-768px-979px.less";
  33. // Phones to portrait tablets and narrow desktops
  34. @import "responsive-767px-max.less";
  35. // RESPONSIVE NAVBAR
  36. // ------------------
  37. // From 979px and below, show a button to toggle navbar contents
  38. @import "responsive-navbar.less";