2013-12-07 23:52:51 -05:00
|
|
|
// Container widths
|
|
|
|
//
|
|
|
|
// Set the container width, and override it for fixed navbars in media queries.
|
|
|
|
|
2015-12-26 18:14:01 -05:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
.container {
|
|
|
|
@include make-container();
|
|
|
|
@include make-container-max-widths();
|
|
|
|
}
|
2012-11-30 15:42:37 -05:00
|
|
|
}
|
2012-01-29 16:06:57 -05:00
|
|
|
|
2013-12-07 23:52:51 -05:00
|
|
|
// Fluid container
|
|
|
|
//
|
|
|
|
// Utilizes the mixin meant for fixed width containers, but without any defined
|
|
|
|
// width for fluid, full width layouts.
|
|
|
|
|
2015-12-26 18:14:01 -05:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
.container-fluid {
|
|
|
|
@include make-container();
|
|
|
|
}
|
2013-12-07 23:52:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Row
|
|
|
|
//
|
|
|
|
// Rows contain and clear the floats of your columns.
|
|
|
|
|
2015-08-24 01:13:58 -04:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
.row {
|
|
|
|
@include make-row();
|
|
|
|
}
|
2013-01-15 20:55:14 -05:00
|
|
|
}
|
2013-04-27 02:59:51 -04:00
|
|
|
|
2013-12-07 23:52:51 -05:00
|
|
|
// Columns
|
|
|
|
//
|
2013-04-27 02:59:51 -04:00
|
|
|
// Common styles for small and large grid columns
|
2013-12-07 23:52:51 -05:00
|
|
|
|
2015-08-24 01:13:58 -04:00
|
|
|
@if $enable-grid-classes {
|
|
|
|
@include make-grid-columns();
|
|
|
|
}
|