Last active
September 7, 2016 20:08
-
-
Save creinartz/da3e6ec0c834556a728f3e01a217c119 to your computer and use it in GitHub Desktop.
CSS at trivago article examples
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
/* | |
### basic spacing | |
*/ | |
$gutter: 16px !default; | |
$gutter-half: ($gutter / 2) !default; // 8px | |
$gutter-third: ($gutter / 3) !default; // 5,33px | |
$gutter-quarter: ($gutter / 4) !default; // 4px | |
$gutter-sixth: ($gutter / 6) !default; // 3px | |
$gutter-eighth: ($gutter / 8) !default; // 2px |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment