2014-12-02 23:02:35 +01:00
|
|
|
/// Grid system
|
|
|
|
//
|
|
|
|
// Generate semantic grid columns with these mixins.
|
|
|
|
|
2018-12-14 17:30:12 +01:00
|
|
|
@mixin make-container($gutter: $grid-gutter-width) {
|
2017-08-13 23:54:57 +02:00
|
|
|
width: 100%;
|
2018-12-14 17:54:44 +01:00
|
|
|
padding-right: $gutter / 2;
|
|
|
|
padding-left: $gutter / 2;
|
2017-10-03 05:34:56 +02:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
|
|
|
|
2018-12-14 17:30:12 +01:00
|
|
|
@mixin make-row($gutter: $grid-gutter-width) {
|
2016-12-22 05:26:17 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2018-12-14 17:54:44 +01:00
|
|
|
margin-right: -$gutter / 2;
|
|
|
|
margin-left: -$gutter / 2;
|
2014-12-02 23:02:35 +01:00
|
|
|
}
|
|
|
|
|
2018-12-14 17:30:12 +01:00
|
|
|
@mixin make-col-ready($gutter: $grid-gutter-width) {
|
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%;
|
2018-12-14 17:54:44 +01:00
|
|
|
padding-right: $gutter / 2;
|
|
|
|
padding-left: $gutter / 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
|
|
|
}
|
2017-08-15 07:30:44 +02:00
|
|
|
|
2019-10-17 08:46:34 +02:00
|
|
|
@mixin make-col-auto() {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
width: auto;
|
|
|
|
max-width: 100%; // Reset earlier grid tiers
|
|
|
|
}
|
|
|
|
|
2017-08-15 07:30:44 +02:00
|
|
|
@mixin make-col-offset($size, $columns: $grid-columns) {
|
2017-10-03 21:12:31 +02:00
|
|
|
$num: $size / $columns;
|
|
|
|
margin-left: if($num == 0, 0, percentage($num));
|
2017-08-15 07:30:44 +02:00
|
|
|
}
|
2019-07-24 08:00:29 +02:00
|
|
|
|
|
|
|
// Row columns
|
|
|
|
//
|
|
|
|
// Specify on a parent element(e.g., .row) to force immediate children into NN
|
|
|
|
// numberof columns. Supports wrapping to new lines, but does not do a Masonry
|
|
|
|
// style grid.
|
|
|
|
@mixin row-cols($count) {
|
2019-08-28 16:37:39 +02:00
|
|
|
& > * {
|
|
|
|
flex: 0 0 100% / $count;
|
|
|
|
max-width: 100% / $count;
|
2019-07-24 08:00:29 +02:00
|
|
|
}
|
|
|
|
}
|