diff options
-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 */ |