Skip to content

Instantly share code, notes, and snippets.

@ivana
ivana / 1-multi-column-grid.scss
Created October 24, 2012 16:40
Baseline and multi-column grids with CSS3 gradients (in SCSS)
// Multi-column grid
/* define grid (http://thoughtbot.com/bourbon/#grid-width) */
$gw-column: 60px;
$gw-gutter: 20px;
$outer-margin: 10px;
/* unless using Bourbon ($n = number of columns):
@function grid-width($n) {
@return $n * $gw-column + ($n - 1) * $gw-gutter;