Skip to content

Instantly share code, notes, and snippets.

@andyford
Created January 25, 2016 11:29
Show Gist options
  • Select an option

  • Save andyford/eed91a9468425a946cab to your computer and use it in GitHub Desktop.

Select an option

Save andyford/eed91a9468425a946cab to your computer and use it in GitHub Desktop.
super basic Sass grid
$total-cols: 12;
.col-group {
position: relative;
// @include clearfix; // bourbon
// @include pie-clearfix; // compass
}
.col {
float: left;
padding: 0 10px;
}
@for $span from 1 through $total-cols {
.col-span-#{$span} {
width: floor(10000 / ($total-cols / $span)) * .01%; // allows for 2 decimal places
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment