2014-12-02 17:02:35 -05:00
|
|
|
/// Grid system
|
|
|
|
//
|
|
|
|
// Generate semantic grid columns with these mixins.
|
|
|
|
|
2017-06-30 00:27:27 -04:00
|
|
|
@mixin make-container() {
|
2017-08-13 17:54:57 -04:00
|
|
|
width: 100%;
|
2017-06-30 00:27:27 -04:00
|
|
|
padding-right: ($grid-gutter-width / 2);
|
2017-09-17 01:18:24 -04:00
|
|
|
padding-left: ($grid-gutter-width / 2);
|
2017-10-02 23:34:56 -04:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2015-08-27 01:56:46 -04:00
|
|
|
|
|
|
|
// For each breakpoint, define the maximum width of the container in a media query
|
2016-01-14 01:33:04 -05:00
|
|
|
@mixin make-container-max-widths($max-widths: $container-max-widths, $breakpoints: $grid-breakpoints) {
|
2015-08-27 01:56:46 -04:00
|
|
|
@each $breakpoint, $container-max-width in $max-widths {
|
2016-01-14 01:33:04 -05:00
|
|
|
@include media-breakpoint-up($breakpoint, $breakpoints) {
|
2017-07-18 02:18:59 -04:00
|
|
|
max-width: $container-max-width;
|
2015-08-27 01:56:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-30 00:27:27 -04:00
|
|
|
@mixin make-row() {
|
2016-12-21 23:26:17 -05:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2017-06-30 00:27:27 -04:00
|
|
|
margin-right: ($grid-gutter-width / -2);
|
2017-09-17 01:18:24 -04:00
|
|
|
margin-left: ($grid-gutter-width / -2);
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2017-06-30 00:27:27 -04:00
|
|
|
@mixin make-col-ready() {
|
2014-12-02 17:02:35 -05:00
|
|
|
position: relative;
|
2016-07-23 20:12:43 -04: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 23:26:17 -05:00
|
|
|
width: 100%;
|
2017-06-30 00:27:27 -04:00
|
|
|
padding-right: ($grid-gutter-width / 2);
|
2017-09-17 01:18:24 -04:00
|
|
|
padding-left: ($grid-gutter-width / 2);
|
2016-07-23 20:12:43 -04:00
|
|
|
}
|
|
|
|
|
2016-09-04 20:43:38 -04:00
|
|
|
@mixin make-col($size, $columns: $grid-columns) {
|
2017-05-26 15:41:07 -04: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 17:02:35 -05:00
|
|
|
}
|
2017-08-15 01:30:44 -04:00
|
|
|
|
|
|
|
@mixin make-col-offset($size, $columns: $grid-columns) {
|
2017-10-03 15:12:31 -04:00
|
|
|
$num: $size / $columns;
|
|
|
|
margin-left: if($num == 0, 0, percentage($num));
|
2017-08-15 01:30:44 -04:00
|
|
|
}
|