diff options
Diffstat (limited to '_sass')
-rw-r--r-- | _sass/_typography.scss | 7 | ||||
-rw-r--r-- | _sass/_variables.scss | 12 |
2 files changed, 8 insertions, 11 deletions
diff --git a/_sass/_typography.scss b/_sass/_typography.scss index aa0e6b2..fedcdb2 100644 --- a/_sass/_typography.scss +++ b/_sass/_typography.scss @@ -1,8 +1,7 @@ body { - line-height: 1.8; + line-height: 2.2; } - h1, h2, h3, h4, h5, h6 { font-family: $sans; font-weight: 200; @@ -11,8 +10,8 @@ h1, h2, h3, h4, h5, h6 { h1 { font-size: 2rem; - margin-top: 1rem; - margin-bottom: 1rem; + margin-top: 2.5rem; + margin-bottom: 1.5rem; } h2 { diff --git a/_sass/_variables.scss b/_sass/_variables.scss index e65b8a8..79edd32 100644 --- a/_sass/_variables.scss +++ b/_sass/_variables.scss @@ -1,13 +1,11 @@ // Colors -$teal: #00819C; -$gray: darken(desaturate($teal, 100%), 10%); -$light-gray: lighten($gray, 30%); +$teal: #00819B; +$gray: #40434E; +$light-gray: lighten($gray, 21%); $highlight: #ffd; +$white: #fff; // Fonts $sans: 'open_sans', sans-serif; -$serif: 'crimson_text', serif; +$serif: 'merriweather', serif; $monospace: 'source_code_pro', monospace; - -// Layout -$container-width: 900px; |