Guest User

Untitled

a guest
Jan 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. //
  2. // Responsive: Landscape phone to desktop/tablet
  3. // --------------------------------------------------
  4. @media (max-width: 767px) {
  5. // GRID & CONTAINERS
  6. // -----------------
  7. // Remove width from containers
  8. .container {
  9. width: auto;
  10. }
  11.  
  12. // Fluid rows
  13. .row-fluid {
  14. width: 100%;
  15. }
  16.  
  17. // Make all grid-sized elements block level again
  18. [class*="span"], .row-fluid [class*="span"] {
  19. float: none;
  20. display: block;
  21. width: 100%;
  22. margin-left: 0;
  23. .box-sizing(border-box);
  24. }
  25. .span12,
  26. .row-fluid .span12 {
  27. width: 100%;
  28. .box-sizing(border-box);
  29. }
  30. }
  31.  
  32. [class*="span"], .row-fluid [class*="span"] {
  33. -moz-box-sizing: border-box;
  34. display: block;
  35. float: none;
  36. margin-left: 0;
  37. width: 100%;
  38. }
  39.  
  40. @media all and (min-width: 1000px) {
  41. [class*="span"], .row-fluid [class*="span"] {
  42. width: 100%;
  43. }
  44. }
Add Comment
Please, Sign In to add comment