_grid.scss 576 B

12345678910111213141516171819202122232425262728293031
  1. // Container widths
  2. //
  3. // Set the container width, and override it for fixed navbars in media queries.
  4. .container {
  5. @include make-container();
  6. @include make-container-max-widths();
  7. }
  8. // Fluid container
  9. //
  10. // Utilizes the mixin meant for fixed width containers, but without any defined
  11. // width for fluid, full width layouts.
  12. .container-fluid {
  13. @include make-container();
  14. }
  15. // Row
  16. //
  17. // Rows contain and clear the floats of your columns.
  18. .row {
  19. @include make-row();
  20. }
  21. // Columns
  22. //
  23. // Common styles for small and large grid columns
  24. @include make-grid-columns();