Last active
August 29, 2015 14:23
-
-
Save sundaycrafts/815b8f658403074f4b39 to your computer and use it in GitHub Desktop.
sass: @mixin col
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
$maxWidth: 1330px | |
$col: 100px/$maxWidth * 100% | |
$margin: 10px/$maxWidth * 100% | |
@mixin col($contentCol:1, $marginCol-left:0, $marginCol-right:0) | |
width: $col*$contentCol + $margin*($contentCol - 1) | |
margin-left: ($col+$margin)*$marginCol-left + $margin | |
margin-right: ($col+$margin)*$marginCol-right + $margin | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment