Skip to content

Instantly share code, notes, and snippets.

@ntlk
Created October 7, 2013 14:41
Show Gist options
  • Save ntlk/6869137 to your computer and use it in GitHub Desktop.
Save ntlk/6869137 to your computer and use it in GitHub Desktop.
/*------- 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