From 2ae8f9b08e480dc8f0c40f35ca2a3d1dac257433 Mon Sep 17 00:00:00 2001 From: curben Date: Tue, 11 Jun 2019 19:09:55 +0930 Subject: [PATCH] fix(css): use sans-serif for content, serif for title * Based on Wikipedia style * https://css-tricks.com/sans-serif/ --- themes/typing/source/css/typing.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/themes/typing/source/css/typing.css b/themes/typing/source/css/typing.css index 55aa281..451d91f 100644 --- a/themes/typing/source/css/typing.css +++ b/themes/typing/source/css/typing.css @@ -417,11 +417,13 @@ dfn { } h1 { + font-family: serif; font-size: 1.5em; margin: 0.5em 0; } h2 { + font-family: serif; font-size: 1.3em; } @@ -619,7 +621,7 @@ h6 { body { margin: 0; - font-family: serif; + font-family: sans-serif; font-size: 1.2em; } @@ -629,7 +631,6 @@ h3, h4, h5, h6 { - font-family: serif; font-weight: bold; line-height: 1.35; margin-top: 1em;