2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Grid system
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-12-08 05:52:51 +01:00
|
|
|
|
|
|
|
// Container widths
|
|
|
|
//
|
|
|
|
// Set the container width, and override it for fixed navbars in media queries.
|
|
|
|
|
2012-11-30 21:42:37 +01:00
|
|
|
.container {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include make-container();
|
2013-11-28 23:22:31 +01:00
|
|
|
|
2014-12-20 16:03:30 +01:00
|
|
|
// For each breakpoint, define the maximum width of the container in a media query
|
|
|
|
@each $breakpoint, $container-max-width in $container-max-widths {
|
2014-12-29 22:37:20 +01:00
|
|
|
@include media-breakpoint-up($breakpoint) {
|
2014-12-20 16:03:30 +01:00
|
|
|
max-width: $container-max-width;
|
|
|
|
}
|
2013-11-28 23:22:31 +01:00
|
|
|
}
|
2012-11-30 21:42:37 +01:00
|
|
|
}
|
2012-01-29 22:06:57 +01:00
|
|
|
|
2013-12-08 05:52:51 +01:00
|
|
|
|
|
|
|
// Fluid container
|
|
|
|
//
|
|
|
|
// Utilizes the mixin meant for fixed width containers, but without any defined
|
|
|
|
// width for fluid, full width layouts.
|
|
|
|
|
|
|
|
.container-fluid {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include make-container();
|
2013-12-08 05:52:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Row
|
|
|
|
//
|
|
|
|
// Rows contain and clear the floats of your columns.
|
|
|
|
|
2013-01-16 02:55:14 +01:00
|
|
|
.row {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include make-row();
|
2013-01-16 02:55:14 +01:00
|
|
|
}
|
2013-04-27 08:59:51 +02:00
|
|
|
|
2013-12-08 05:52:51 +01:00
|
|
|
|
|
|
|
// Columns
|
|
|
|
//
|
2013-04-27 08:59:51 +02:00
|
|
|
// Common styles for small and large grid columns
|
2013-12-08 05:52:51 +01:00
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
@include make-grid-columns();
|
2013-01-16 02:55:14 +01:00
|
|
|
|