sass-site/source/assets/stylesheets/regions/_container.scss

35 lines
637 B
SCSS
Raw Normal View History

// ===========================================================================
// GRID
.container {
2013-02-11 00:04:29 +01:00
padding-right: $gutter-width * 2;
padding-left: $gutter-width * 2;
@include susy-grid-background;
2013-02-09 04:10:33 +01:00
}
// ---------------------------------------------------------------------------
// iPhone
2013-02-11 00:04:29 +01:00
@mixin container-iPhone {
.container {
@extend %clearfix-iPhone;
}
2013-02-09 04:10:33 +01:00
}
// ---------------------------------------------------------------------------
// SMALL TABLET
2013-02-11 00:04:29 +01:00
@mixin container-small-tablet {
@include with-grid-settings(8) {
.container {
@include container;
@include susy-grid-background;
}
2013-02-09 04:10:33 +01:00
}
}