2014-12-02 14:02:35 -08:00
|
|
|
/// Grid system
|
|
|
|
//
|
|
|
|
// Generate semantic grid columns with these mixins.
|
|
|
|
|
2017-06-29 21:27:27 -07:00
|
|
|
@mixin make-container() {
|
2017-08-13 14:54:57 -07:00
|
|
|
width: 100%;
|
2017-06-29 21:27:27 -07:00
|
|
|
padding-right: ($grid-gutter-width / 2);
|
2017-09-17 08:18:24 +03:00
|
|
|
padding-left: ($grid-gutter-width / 2);
|
2017-10-03 06:34:56 +03:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
|
2015-08-27 15:56:46 +10:00
|
|
|
|
|
|
|
// For each breakpoint, define the maximum width of the container in a media query
|
2016-01-14 16:33:04 +10:00
|
|
|
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
|
2015-08-27 15:56:46 +10:00
|
|
|
@each $breakpoint, $container-max-width in $max-widths {
|
2016-01-14 16:33:04 +10:00
|
|
|
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
2017-07-18 11:48:59 +05:30
|
|
|
max-width: $container-max-width;
|
2015-08-27 15:56:46 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-29 21:27:27 -07:00
|
|
|
@mixin make-row() {
|
2016-12-21 20:26:17 -08:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2017-06-29 21:27:27 -07:00
|
|
|
margin-right: ($grid-gutter-width / -2);
|
2017-09-17 08:18:24 +03:00
|
|
|
margin-left: ($grid-gutter-width / -2);
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
|
|
|
|
2017-06-29 21:27:27 -07:00
|
|
|
@mixin make-col-ready() {
|
2014-12-02 14:02:35 -08:00
|
|
|
position: relative;
|
2016-07-23 17:12:43 -07:00
|
|
|
// Prevent columns from becoming too narrow when at smaller grid tiers by
|
|
|
|
// always setting `width: 100%;`. This works because we use `flex` values
|
|
|
|
// later on to override this initial width.
|
2016-12-21 20:26:17 -08:00
|
|
|
width: 100%;
|
|
|
|
min-height: 1px; // Prevent collapsing
|
2017-06-29 21:27:27 -07:00
|
|
|
padding-right: ($grid-gutter-width / 2);
|
2017-09-17 08:18:24 +03:00
|
|
|
padding-left: ($grid-gutter-width / 2);
|
2016-07-23 17:12:43 -07:00
|
|
|
}
|
|
|
|
|
2016-09-04 21:43:38 -03:00
|
|
|
@mixin make-col($size, $columns: $grid-columns) {
|
2017-05-26 12:41:07 -07:00
|
|
|
flex: 0 0 percentage($size / $columns);
|
|
|
|
// Add a `max-width` to ensure content within each column does not blow out
|
|
|
|
// the width of the column. Applies to IE10+ and Firefox. Chrome and Safari
|
|
|
|
// do not appear to require this.
|
|
|
|
max-width: percentage($size / $columns);
|
2014-12-02 14:02:35 -08:00
|
|
|
}
|
2017-08-14 22:30:44 -07:00
|
|
|
|
|
|
|
@mixin make-col-offset($size, $columns: $grid-columns) {
|
2017-10-03 22:12:31 +03:00
|
|
|
$num: $size / $columns;
|
|
|
|
margin-left: if($num == 0, 0, percentage($num));
|
2017-08-14 22:30:44 -07:00
|
|
|
}
|