Created
August 28, 2013 11:03
-
-
Save carlmw/6364865 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import 'bourbon'; | |
$visual-grid: true; // Turn on the visual grid overlay | |
$max-width: 960px; | |
$grid-columns: 8; | |
$mobile-size: 480px; | |
$tablet-size: 768px; | |
$desktop-size: 960px; | |
$mobile-breakpoint: new-breakpoint(max-width $mobile-size 4); | |
$mobile-landscape-breakpoint: new-breakpoint(min-width $mobile-size max-width $tablet-size $grid-columns); | |
$tablet-breakpoint: new-breakpoint(min-width $tablet-size max-width $desktop-size $grid-columns); | |
$desktop-breakpoint: new-breakpoint(min-width $desktop-size $grid-columns); | |
@import 'neat'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@import '../common/grid'; | |
@import '../common/variables'; | |
@import '../common/mixins'; | |
.container { | |
@include outer-container; | |
} | |
@include media($tablet-breakpoint) { | |
.container { | |
max-width: $tablet-size; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment