From 44ac9f9b8a5e86f4a8137799e08cc7d73b2bcfcf Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Fri, 14 Jul 2023 08:55:03 +0200 Subject: [PATCH] use the semicond font for smaller headings and title cards --- assets/style.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/assets/style.css b/assets/style.css index 210216c..b745cc9 100644 --- a/assets/style.css +++ b/assets/style.css @@ -59,12 +59,18 @@ body { background: white; } -h1, h2, h3, h4, h5, h6 { +h1, h2 { font-family: 'Barlow Condensed', sans-serif; color: #555; border-bottom: 1pt solid #e8e8e8; } +h3, h4, h5, h6 { + font-family: 'Barlow Semi Condensed', sans-serif; + color: #555; + border-bottom: 1pt solid #e8e8e8; +} + h1 { font-size: 250%; font-weight: bold; @@ -238,7 +244,7 @@ input, button { } .index-card-title { - font-family: 'Barlow Condensed', sans-serif; + font-family: 'Barlow Semi Condensed', sans-serif; font-size: 80%; }