diff options
author | Alan Pearce | 2020-01-06 19:08:42 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-06 19:08:42 +0100 |
commit | 6d061434a07767cd18afec928a65a69bced9391b (patch) | |
tree | 63b3e1ccc8f9271080ddf8e15cee704f1c601367 | |
parent | 982dfb320e8ac58a78203be76c5b06beae25d4f9 (diff) | |
download | hugo-xmin-6d061434a07767cd18afec928a65a69bced9391b.tar.lz hugo-xmin-6d061434a07767cd18afec928a65a69bced9391b.tar.zst hugo-xmin-6d061434a07767cd18afec928a65a69bced9391b.zip |
Remove custom fonts
-rw-r--r-- | layouts/partials/header.html | 1 | ||||
-rw-r--r-- | static/css/fonts.css | 7 | ||||
-rw-r--r-- | static/css/style.css | 1 |
3 files changed, 1 insertions, 8 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 4f431eb..b3dbf64 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -5,7 +5,6 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <title>{{ .Title }} | {{ .Site.Title }}</title> <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" /> - <link rel="stylesheet" href="{{ "/css/fonts.css" | relURL }}" /> {{ partial "head_custom.html" . }} </head> diff --git a/static/css/fonts.css b/static/css/fonts.css deleted file mode 100644 index 8ffcecd..0000000 --- a/static/css/fonts.css +++ /dev/null @@ -1,7 +0,0 @@ -body { - font-family: Optima, Candara, Calibri, Arial, sans-serif; -} -code { - font-family: "Lucida Console", Monaco, monospace; - font-size: 85%; -} diff --git a/static/css/style.css b/static/css/style.css index 4dc3ae4..a0ca0da 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -3,6 +3,7 @@ body { margin: auto; padding: 1em; line-height: 1.5em; + font-family: sans-serif; } /* header and footer areas */ |