Skip to content

Instantly share code, notes, and snippets.

@jason
Created March 20, 2013 18:19
Show Gist options
  • Save jason/5207111 to your computer and use it in GitHub Desktop.
Save jason/5207111 to your computer and use it in GitHub Desktop.
Bourbon Neat HTML/CSS grid setup
.l-row {
@include outer-container;
}
.l-sidebar {
@include span-columns(4);
}
.l-article {
@include span-columns(8);
}
<div class="l-row">
<div class="l-sidebar"></div>
<div class="l-article"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment