Skip to content

Instantly share code, notes, and snippets.

@lesjames
Created April 11, 2012 14:15
Show Gist options
  • Save lesjames/2359562 to your computer and use it in GitHub Desktop.
Save lesjames/2359562 to your computer and use it in GitHub Desktop.
Breakpoint Code Examples
$column: 60px; // column-width of your grid in pixels
$gutter: 20px; // gutter-width of your grid in pixels
$columns: 16; // maximum number of columns needed for layout
$fixed-grid: 8; // number of columns to trigger fixed grid
$ie-support: false; // number of columns for vintage ie (must match a layout)
$show-grid: false; // shows a visual grid overlay
<div class="container">
<p>Heading Content</p>
</div>
<div class="container">
<div class="col main">
<p>Main Content</p>
</div>
<div class="col sidebar">
<p>Sidebar Content</p>
</div>
</div>
<div class="container">
<p>Footer Content</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment