diff options
author | Adam Hovorka <[email protected]> | 2020-04-26 23:47:53 -0600 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2020-04-26 23:47:53 -0600 |
commit | 5196850658003808a785aa05a89ad6746920a510 (patch) | |
tree | 1cfc3661beef923e6f80c4e95bdff3a90b747fad /style.css | |
parent | 1ae62b3301ba0967b1eb3a73e307b486b4629be8 (diff) |
Switch font to EB Garamond
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,7 +1,8 @@ * { box-sizing: border-box; margin: 0; padding: 0; - font-family: "Merriweather", serif; + /*font-family: "Merriweather", serif;*/ + font-family: "EB Garamond", serif; transition-timing-function: ease-in-out; } @@ -133,7 +134,7 @@ section { } h2 { - font-size: 10px; + font-size: 14px; font-weight: normal; color: var(--off); } @@ -149,12 +150,13 @@ h2 a.active, h2 a:hover { section:not(.editing) p { margin: 22px 0; - font-size: 16px; + font-size: 18px; line-height: 1.4em; } strong { - font-weight: 900; + /*font-weight: 900;*/ + font-weight: 600; } blockquote { @@ -212,7 +214,7 @@ section textarea { resize: none; border: 0; outline: none; - font-size: 16px; + font-size: 18px; line-height: 1.4em; color: var(--text); background-color: transparent; @@ -265,7 +267,7 @@ section textarea:focus { } #unreachable { - font-size: 12px; + font-size: 14px; font-style: oblique; color: var(--red); } |