Created
October 7, 2013 14:41
-
-
Save ntlk/6869137 to your computer and use it in GitHub Desktop.
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
/*------- Grid -------*/ | |
$total-columns: 8; // 8 columns | |
$column-width: 4.5em; // columns are 4.5em wide | |
$gutter-width: 2em; // with 2em gutters | |
$grid-padding: 1em; // and 1em padding on the grid container | |
$container-style: magic; | |
.wrapper__inner { | |
@include clearfix(); | |
} | |
.l-main { | |
@include span-columns(5,8); | |
} | |
.l-sidebar { | |
@include span-columns(3 omega,8); | |
} | |
.l-full { | |
@include span-columns(8,8); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment