Created
July 22, 2013 15:42
-
-
Save starryeyez024/6054880 to your computer and use it in GitHub Desktop.
Testing Singularity Grid System
This file contains 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
$tablet: 700px; | |
$desktop: 900px; | |
$wide-desktop: 1200px; | |
$gutters: 1em; | |
$gutter-styles: 'split'; | |
$grids: 6; | |
$grids: add-grid(12 at $tablet); | |
$grids: add-grid(2 8 2 at $desktop); | |
$grids: add-grid(1 3 5 7 9 at $wide-desktop); | |
.main { | |
@include grid-span(3,1) | |
} | |
.sidebar-first { | |
@include grid-span(3,3); | |
@include breakpoint($tablet) { | |
@include grid-span(4, 3); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment