summaryrefslogtreecommitdiff
path: root/_sass
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-05-11 16:45:11 -0400
committerBen Burwell <ben@benburwell.com>2015-05-11 16:45:11 -0400
commit2ecd83122bb512c817a5e835a0a432d9ad392733 (patch)
tree8f9c0307308e7517b4891b9ed0af5b8cc38cc3bb /_sass
parentdbf0fca03161fab7d5d9bdc142abeb2c6af75161 (diff)
switch from Crimson Text to Merriweather
Diffstat (limited to '_sass')
-rw-r--r--_sass/_typography.scss7
-rw-r--r--_sass/_variables.scss12
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;