From 0439879dd1895a8e572d34258ebb38285843a253 Mon Sep 17 00:00:00 2001 From: Hugo Thunnissen Date: Tue, 21 Apr 2020 11:35:07 +0200 Subject: [PATCH] Add some text presentation improvements. 1. Increase line height a little 2. Decrease font size a little 3. Limit body width using "ch" unit (now at 80ch) --- style.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/style.css b/style.css index 751afde..f8b6fda 100644 --- a/style.css +++ b/style.css @@ -40,10 +40,13 @@ pre { } } +body { + line-height: 1.4; +} + @media only all and (pointer: fine) { body { - font-size: calc(16px + 0.6vmin); - min-width: 500px; - max-width: 50em; + font-size: calc(14px + 0.6vmin); + max-width: 80ch; } }