grgr.me

latest commits to https://grgr.me/
Log | Files | Refs

commit 81984788aed5a9d249d459c87c9a27f2477425e3
parent a1ec823ffa5999ea36a1d8ac52e944695f66505f
Author: corndog <cauchyn@firemail.cc>
Date:   Tue,  5 Feb 2019 13:39:39 -0800

Set a better balance of font size and density

Also properly enable kerning and ligatures.

Diffstat:
in/static/style.css | 12+++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/in/static/style.css b/in/static/style.css @@ -1,12 +1,18 @@ /* Implying I do front-end */ body { + text-rendering: optimizeLegibility; + font-feature-settings: "kern" 1; + + text-rendering: optimizeLegibility; + font-feature-settings: "liga" 1; + background-color: #f6f6f6; font-family: "Charter", sans-serif; - font-size: 18px; + font-size: 16.5px; margin: 5% auto; - max-width: 65ch; - line-height: 1.3; + max-width: 68ch; + line-height: 1.35; width: 80%; word-wrap: break-word; }