Created
October 20, 2017 14:02
-
-
Save terrancesmith98/16a7ea0069c8abfe3b22bb2c30f70e15 to your computer and use it in GitHub Desktop.
This file contains 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
$gutter: 10px; | |
@function px-to-pc($target, $context: $max-width) { | |
@return ($target / $context) * 100%; | |
} | |
@function per-line($items) { | |
$g-pct: px-to-pc($gutter) * 2; | |
$g-total: $items * $g-pct; | |
@return (100% / $items) - $g-total; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment