responsive.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*!
  2. * Bootplus Responsive v1.0.3
  3. *
  4. * Copyright 2013 Marcello Palmitessa
  5. * Licensed under the Apache License v2.0 (http://www.apache.org/licenses/LICENSE-2.0) or the GPL v2.0 (http://www.gnu.org/licenses/gpl-2.0.html)
  6. *
  7. * based on Twitter Bootstrap v2.3.2
  8. */
  9. // Responsive.less
  10. // For phone and tablet devices
  11. // -------------------------------------------------------------
  12. // REPEAT VARIABLES & MIXINS
  13. // -------------------------
  14. // Required since we compile the responsive stuff separately
  15. @import "variables.less"; // Modify this for custom colors, font-sizes, etc
  16. @import "../mixins.less";
  17. @import "mixins.less";
  18. // RESPONSIVE CLASSES
  19. // ------------------
  20. @import "../responsive-utilities.less";
  21. // MEDIA QUERIES
  22. // ------------------
  23. // Large desktops
  24. @import "../responsive-1200px-min.less";
  25. // Tablets to regular desktops
  26. @import "../responsive-768px-979px.less";
  27. // Phones to portrait tablets and narrow desktops
  28. @import "../responsive-767px-max.less";
  29. // RESPONSIVE NAVBAR
  30. // ------------------
  31. // From 979px and below, show a button to toggle navbar contents
  32. @import "../responsive-navbar.less";
  33. @import "responsive-navbar.less";