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
| //----- Global variables------------- | |
| $mr-grid-width: 1200px !default; // The wrapper/container size$mr-gutter-width: 20px !default; // The amount of margin between columns | |
| $mr-em-base: 16px !default; | |
| $mr-convert-to: "%" !default; | |
| //---------------------------------- | |
| @function -mr-grid-col-width($cols, $grid-width:$mr-grid-width, $grid-total-cols:$mr-grid-total-column, $gutter-width: $mr-gutter-width){ | |
| //$cols The number of columns used to create the current elements width. | |
| @return ($grid-width / $grid-total-cols) * $cols - $gutter-width; |
NewerOlder