From 223fe2366797566139c503cef8d617bd6352d432 Mon Sep 17 00:00:00 2001 From: Nick Pegg Date: Thu, 18 Jan 2018 23:01:23 -0800 Subject: [PATCH 1/3] add links to presence on other sites --- templates/base.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/templates/base.html b/templates/base.html index 9a6462f..cf847f4 100644 --- a/templates/base.html +++ b/templates/base.html @@ -52,6 +52,28 @@ +
+ +
From ba42d016b3745e58ce1d07a454e580b037d94902 Mon Sep 17 00:00:00 2001 From: Nick Pegg Date: Fri, 19 Jan 2018 19:43:51 -0800 Subject: [PATCH 2/3] Twiddle fonts. Quicksand by default, Roboto for content --- media/css/index.css | 9 +++++---- templates/base.html | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/media/css/index.css b/media/css/index.css index 6dee7e4..2d65285 100644 --- a/media/css/index.css +++ b/media/css/index.css @@ -1,6 +1,11 @@ body { background: #FCFCFC; color: #35352F; + font-family: 'Quicksand', sans-serif; +} + +p { + font-family: 'Roboto', sans-serif; } a { @@ -11,10 +16,6 @@ a:hover { color: #FF4F00; } -h1, h2, h3, h4, h5 { - font-family: 'Quicksand', sans-serif; -} - blockquote { margin-left: 0; border-left: 0.5rem solid #dfe2e5; diff --git a/templates/base.html b/templates/base.html index cf847f4..ac59961 100644 --- a/templates/base.html +++ b/templates/base.html @@ -6,7 +6,7 @@ {{ site.title }} - {% block page_title %}{% endblock %} - + From c8dc8f1077e64d8712feaca7e9158a00e0edc58d Mon Sep 17 00:00:00 2001 From: Nick Pegg Date: Fri, 19 Jan 2018 19:49:19 -0800 Subject: [PATCH 3/3] use Source Code Pro for monospace font --- media/css/index.css | 4 ++++ templates/base.html | 1 + 2 files changed, 5 insertions(+) diff --git a/media/css/index.css b/media/css/index.css index 2d65285..dcf0053 100644 --- a/media/css/index.css +++ b/media/css/index.css @@ -8,6 +8,10 @@ p { font-family: 'Roboto', sans-serif; } +pre code { + font-family: 'Source Code Pro', monospace; +} + a { color: #FF4F00; } diff --git a/templates/base.html b/templates/base.html index ac59961..6e0a23e 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,6 +8,7 @@ + >