hugo-theme-mofo

Minimal theme for Hugo
git clone https://git.bracken.jp/hugo-theme-mofo.git
Log | Files | Refs | LICENSE

commit 8c29bf1237b4f8e38e18469cb01da098973a7cd9
parent 5633b8cae7f6cb5e4927672837765e4c7acacfcf
Author: Chris Bracken <chris@bracken.jp>
Date:   Fri,  1 May 2020 22:08:55 -0700

Reduce pre code font from 12.5 to 12 px

Helps fit the text within a 700px width at ~80 columns.

Diffstat:
Mstatic/css/site.css | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/static/css/site.css b/static/css/site.css @@ -29,12 +29,12 @@ pre { background-color: var(--pre-background-color); border: 1px solid var(--border-color); border-radius: 2px; - font-size: 12.5px; + font-size: 12px; line-height: 1.1; padding: 10px; } code { font-size: 14px; line-height: 1.2; } -pre > code { font-size: 12.5px; } +pre > code { font-size: 12px; } a { color: var(--link-color); text-decoration: none;