-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- more properties in variables makes it easier for users to override and for me to update and add config in the future - made variables for spacers, font styles, breakpoint and container size
- Loading branch information
1 parent
8b360ff
commit 32ded0e
Showing
4 changed files
with
86 additions
and
65 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,26 @@ | ||
|
||
// Font family | ||
$body-font: "Helvetica Neue", Arial, sans-serif; | ||
$body-font-family: "Helvetica Neue", Arial, sans-serif; | ||
$body-font-size: 16px; | ||
$prose-font-size: 20px; | ||
|
||
$h0-mobile: 64px; | ||
$h0-desktop: 128px; | ||
|
||
// Default border color | ||
$color-border: #ddd !default; | ||
|
||
// Container width | ||
$container-width: 64em; | ||
|
||
// Large breakpoint | ||
$breakpoint-lg: 52em; | ||
|
||
// Spacing unit | ||
$spacer: 8px !default; | ||
|
||
// Spacing scale | ||
$spacer-1: $spacer !default; // 8px | ||
$spacer-2: ($spacer * 2) !default; // 16px | ||
$spacer-3: ($spacer * 4) !default; // 32px | ||
$spacer-4: ($spacer * 8) !default; // 64px |