From 4053f178f26961ba16e952f89aaa57966d6f109b Mon Sep 17 00:00:00 2001 From: Rhiannon Morris Date: Sat, 11 Jul 2020 18:24:17 +0200 Subject: [PATCH] use default weight for inline titles --- style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 564a56e..5d01895 100644 --- a/style.css +++ b/style.css @@ -11,6 +11,7 @@ body { hsl(155deg, 70%, 62%) ); --bg-image: url(images/niss_uwu_bg.png); + --weight: 500; } body { @@ -23,7 +24,7 @@ body { body { font-family: 'Muller'; font-size: 1.75rem; - font-weight: 500; + font-weight: var(--weight); color: white; text-shadow: 1px 1px 0 black, @@ -123,6 +124,7 @@ dd { [title]::after { content: attr(title); font-size: 75%; + font-weight: var(--weight); display: inline-block; } }