Skip to content

Instantly share code, notes, and snippets.

@sundaycrafts
Last active August 29, 2015 14:23
Show Gist options
  • Save sundaycrafts/815b8f658403074f4b39 to your computer and use it in GitHub Desktop.
Save sundaycrafts/815b8f658403074f4b39 to your computer and use it in GitHub Desktop.
sass: @mixin col
$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