Created
January 25, 2016 11:29
-
-
Save andyford/eed91a9468425a946cab to your computer and use it in GitHub Desktop.
super basic Sass grid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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