mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 01:19:50 +01:00
45 lines
783 B
SCSS
45 lines
783 B
SCSS
// ===========================================================================
|
|
// GRID
|
|
|
|
|
|
|
|
.container {
|
|
padding-right: $gutter-width * 2;
|
|
padding-left: $gutter-width * 2;
|
|
@include susy-grid-background;
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// iPhone
|
|
|
|
@mixin container-iPhone {
|
|
.container {
|
|
@extend %clearfix-iPhone;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// iPad
|
|
|
|
@mixin container-iPad {
|
|
.container {
|
|
@include container;
|
|
@include susy-grid-background;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// SCREEN
|
|
|
|
@mixin container-screen {
|
|
.container {
|
|
@include set-container-width;
|
|
@include susy-grid-background;
|
|
}
|
|
} |