From 882cab943ac650dae4d6c3870c22f1166c66ae91 Mon Sep 17 00:00:00 2001 From: ptrcnull Date: Mon, 3 Apr 2023 20:22:10 +0200 Subject: [PATCH] feat: make the main font sans-serif, with monospace only for the header --- static/css/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index a138473..85fc5a1 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -30,11 +30,15 @@ body { max-width: 800px; margin: 40px auto; padding: 0 10px; - font: 14px/1.5 monospace; + font: 14px/1.5 sans-serif; background-color: var(--main-bg-color); color: var(--main-fg-color); } +header { + font-family: monospace; +} + h1, h2, h3 {