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
| // Make elements align in a grid, regardless of height | |
| // Apply to elements you want as grid items | |
| // $cols = how many columns you want | |
| // $margin-right = margin-right, should be in percent | |
| // $ie8-height = an explicit height for all the elements, "off" by default, only applied to IE | |
| @mixin gridify($cols, $margin-right: 5%, $ie8-height: auto) { | |
| // Math for widths, margins, and clears | |
| $width: (100% / $cols) - $margin-right + ($margin-right / $cols); | |
| $ie-width: (100% / $cols) - $margin-right; | |
| $clearnum: $cols + 1; |