From 63862db8887b107ca19d613435463b277b764772 Mon Sep 17 00:00:00 2001 From: Nick Pegg Date: Sat, 20 Jan 2018 17:33:37 -0800 Subject: [PATCH] Font tweaks Apply Roboto to
and not just

. Non-

tags inside of articles weren't getting it, like

    . Shrink code font size from 90% to 80%. This at least keeps code that stays within 80 char lines looking nice. --- media/css/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/media/css/index.css b/media/css/index.css index dcf0053..f4230b1 100644 --- a/media/css/index.css +++ b/media/css/index.css @@ -4,12 +4,13 @@ body { font-family: 'Quicksand', sans-serif; } -p { +article section { font-family: 'Roboto', sans-serif; } pre code { font-family: 'Source Code Pro', monospace; + font-size: 80%; } a {