From a1388e6e82555b99d9c6b8c6c112826b7232b1fd Mon Sep 17 00:00:00 2001 From: Rupus Reinefjord Date: Tue, 9 Oct 2018 14:55:15 +0200 Subject: [PATCH] font-family has to be "sans-serif", not "sans" --- src/static/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/static/css/style.css b/src/static/css/style.css index 46c7983..364cbc3 100644 --- a/src/static/css/style.css +++ b/src/static/css/style.css @@ -16,7 +16,7 @@ body { } h1, h2, h3 { - font-family: sans; + font-family: sans-serif; } main { @@ -34,7 +34,7 @@ dd { } code, .email { - font-family: monospace, sans; + font-family: monospace, sans-serif; font-size: 0.9em; }