responsive.less 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. ---
  2. ---
  3. /*!
  4. * Bootstrap Responsive v2.3.2
  5. *
  6. * Copyright 2012 Twitter, Inc
  7. * Licensed under the Apache License v2.0
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Designed and built with all the love in the world @twitter by @mdo and @fat.
  11. */
  12. // Responsive.less
  13. // For phone and tablet devices
  14. // -------------------------------------------------------------
  15. // REPEAT VARIABLES & MIXINS
  16. // -------------------------
  17. // Required since we compile the responsive stuff separately
  18. @import "bootstrap-{{ site.bootstrap.version }}/variables.less"; // Modify this for custom colors, font-sizes, etc
  19. @import "bootstrap-{{ site.bootstrap.version }}/mixins.less";
  20. @import "variables.less"; // Modify this for custom colors, font-sizes, etc
  21. // RESPONSIVE CLASSES
  22. // ------------------
  23. @import "bootstrap-{{ site.bootstrap.version }}/responsive-utilities.less";
  24. // MEDIA QUERIES
  25. // ------------------
  26. // Large desktops
  27. @import "bootstrap-{{ site.bootstrap.version }}/responsive-1200px-min.less";
  28. @import "responsive-1200px-min.less";
  29. // Tablets to regular desktops
  30. @import "bootstrap-{{ site.bootstrap.version }}/responsive-768px-979px.less";
  31. @import "responsive-768px-979px.less";
  32. // Phones to portrait tablets and narrow desktops
  33. @import "bootstrap-{{ site.bootstrap.version }}/responsive-767px-max.less";
  34. @import "responsive-767px-max.less";
  35. // RESPONSIVE NAVBAR
  36. // ------------------
  37. // From 979px and below, show a button to toggle navbar contents
  38. @import "bootstrap-{{ site.bootstrap.version }}/responsive-navbar.less";
  39. @import "responsive-navbar.less";