From 3edf24c876bd561b1f5904cae45871a4eb93bb57 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 8 Sep 2014 21:05:12 +0100 Subject: Change fonts (remove Google Fonts) --- layouts/partials/head.html | 1 - static/css/hyde.css | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 8915f55..efc7199 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -6,7 +6,6 @@ - diff --git a/static/css/hyde.css b/static/css/hyde.css index 79c3c51..97bbcb7 100644 --- a/static/css/hyde.css +++ b/static/css/hyde.css @@ -32,7 +32,7 @@ */ html { - font-family: "PT Sans", Helvetica, Arial, sans-serif; + font-family: "PT Sans", "Ubuntu Sans", "Liberation Sans", "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif; } @media (min-width: 48em) { html { @@ -79,7 +79,7 @@ html { .site-title { color: #fff; margin-top: 0; - font-family: "Abril Fatface", serif; + font-family: Georgia, serif; font-size: 3.25rem; font-weight: bold; line-height: 1.25; -- cgit 1.4.1 From ab312f18166014cbcc0b5142a8c0b654ba8cca35 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 8 Sep 2014 21:14:05 +0100 Subject: Add meta charset tag as recommended by W3C I already send the header, but whatever. --- layouts/partials/head.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index efc7199..c62c2c3 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,7 @@ + {{ if ne .Title .Site.Title }}{{ .Title }} ยท {{ end }}{{ .Site.Title }} -- cgit 1.4.1