diff options
| author | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-01-07 19:15:37 +0000 | 
|---|---|---|
| committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2023-01-07 19:15:37 +0000 | 
| commit | 543e735c5e47fa6f59b3e6e1a8bcc1957dca2dc7 (patch) | |
| tree | b9534a7ce1d251c293a93d44f98b746c06298258 | |
| parent | f54dc6eed726a3c53e3114c3870367fa5cd850f2 (diff) | |
| download | blog-543e735c5e47fa6f59b3e6e1a8bcc1957dca2dc7.tar.gz blog-543e735c5e47fa6f59b3e6e1a8bcc1957dca2dc7.tar.bz2 blog-543e735c5e47fa6f59b3e6e1a8bcc1957dca2dc7.zip | |
Remove `font-secondary` variable
| -rw-r--r-- | share/style.css | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/share/style.css b/share/style.css index 0dc2450..bb8537c 100644 --- a/share/style.css +++ b/share/style.css @@ -2,8 +2,9 @@  :root {      --width: 720px; -    --font-main: Verdana, sans-serif; -    --font-secondary: Verdana, sans-serif; +    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", +                 "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",  "Droid Sans", +                 "Helvetica Neue", sans-serif;      --font-scale: 1em;      --background-color: #fff;      --heading-color: #222; @@ -16,7 +17,7 @@  }  body { -    font-family: var(--font-secondary); +    font-family: var(--font-main);      font-size: var(--font-scale);      margin: auto;      padding: 20px; |