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