2014-12-02 17:02:35 -05:00
|
|
|
/// Grid system
|
|
|
|
//
|
|
|
|
// Generate semantic grid columns with these mixins.
|
|
|
|
|
2016-10-22 00:25:05 -04:00
|
|
|
@mixin make-container($gutters: $grid-gutter-widths) {
|
2014-12-02 17:02:35 -05:00
|
|
|
margin-left: auto;
|
2015-10-23 18:58:10 -04:00
|
|
|
margin-right: auto;
|
2015-09-13 09:02:58 -04:00
|
|
|
@if not $enable-flex {
|
2015-09-12 15:30:57 -04:00
|
|
|
@include clearfix();
|
|
|
|
}
|
2016-10-22 00:25:05 -04:00
|
|
|
|
|
|
|
@each $breakpoint in map-keys($gutters) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$gutter: map-get($gutters, $breakpoint);
|
|
|
|
padding-right: ($gutter / 2);
|
|
|
|
padding-left: ($gutter / 2);
|
|
|
|
}
|
|
|
|
}
|
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) {
|
2016-10-09 16:14:10 -04:00
|
|
|
width: $container-max-width;
|
|
|
|
max-width: 100%;
|
2015-08-27 01:56:46 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-09 00:48:17 -04:00
|
|
|
@mixin make-gutters($gutters: $grid-gutter-widths) {
|
|
|
|
@each $breakpoint in map-keys($gutters) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$gutter: map-get($gutters, $breakpoint);
|
|
|
|
padding-right: ($gutter / 2);
|
|
|
|
padding-left: ($gutter / 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin make-row($gutters: $grid-gutter-widths) {
|
2015-04-27 04:43:14 -04:00
|
|
|
@if $enable-flex {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2015-05-27 20:37:22 -04:00
|
|
|
} @else {
|
|
|
|
@include clearfix();
|
2015-04-27 04:43:14 -04:00
|
|
|
}
|
2016-09-09 00:48:17 -04:00
|
|
|
|
|
|
|
@each $breakpoint in map-keys($gutters) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$gutter: map-get($gutters, $breakpoint);
|
|
|
|
margin-right: ($gutter / -2);
|
|
|
|
margin-left: ($gutter / -2);
|
|
|
|
}
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2016-09-09 00:48:17 -04:00
|
|
|
@mixin make-col-ready($gutters: $grid-gutter-widths) {
|
2014-12-02 17:02:35 -05:00
|
|
|
position: relative;
|
2016-07-23 20:12:43 -04:00
|
|
|
min-height: 1px; // Prevent collapsing
|
2016-02-06 13:51:59 -05:00
|
|
|
|
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.
|
|
|
|
@if $enable-flex {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2016-09-09 00:48:17 -04:00
|
|
|
|
|
|
|
@each $breakpoint in map-keys($gutters) {
|
|
|
|
@include media-breakpoint-up($breakpoint) {
|
|
|
|
$gutter: map-get($gutters, $breakpoint);
|
|
|
|
padding-right: ($gutter / 2);
|
|
|
|
padding-left: ($gutter / 2);
|
|
|
|
}
|
|
|
|
}
|
2016-07-23 20:12:43 -04:00
|
|
|
}
|
|
|
|
|
2016-09-04 20:43:38 -04:00
|
|
|
@mixin make-col($size, $columns: $grid-columns) {
|
2015-04-27 04:43:14 -04:00
|
|
|
@if $enable-flex {
|
|
|
|
flex: 0 0 percentage($size / $columns);
|
2016-01-07 03:30:49 -05:00
|
|
|
// 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.
|
2015-10-01 15:03:05 -04:00
|
|
|
max-width: percentage($size / $columns);
|
2015-04-27 04:43:14 -04:00
|
|
|
} @else {
|
2016-02-06 13:51:59 -05:00
|
|
|
float: left;
|
2015-04-27 04:43:14 -04:00
|
|
|
width: percentage($size / $columns);
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-20 10:03:30 -05:00
|
|
|
@mixin make-col-offset($size, $columns: $grid-columns) {
|
|
|
|
margin-left: percentage($size / $columns);
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-20 10:03:30 -05:00
|
|
|
@mixin make-col-push($size, $columns: $grid-columns) {
|
|
|
|
left: if($size > 0, percentage($size / $columns), auto);
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|
|
|
|
|
2014-12-20 10:03:30 -05:00
|
|
|
@mixin make-col-pull($size, $columns: $grid-columns) {
|
|
|
|
right: if($size > 0, percentage($size / $columns), auto);
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin make-col-modifier($type, $size, $columns) {
|
|
|
|
// Work around the lack of dynamic mixin @include support (https://github.com/sass/sass/issues/626)
|
|
|
|
@if $type == push {
|
|
|
|
@include make-col-push($size, $columns);
|
|
|
|
} @else if $type == pull {
|
|
|
|
@include make-col-pull($size, $columns);
|
|
|
|
} @else if $type == offset {
|
|
|
|
@include make-col-offset($size, $columns);
|
|
|
|
}
|
2014-12-02 17:02:35 -05:00
|
|
|
}
|