From f2bff01c0330293fd9a4f042ad2337c5d794259d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Sun, 17 May 2020 14:59:57 -0700 Subject: [PATCH] style: Remove some duplicated code between h1 and h2 By adding one block for both h1 _and_ h2 to hold common properties. --- style.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index cfef9c8..9f922b6 100644 --- a/style.css +++ b/style.css @@ -36,16 +36,17 @@ body { color: var(--text-fg-color-max-contrast); } -h1 { +h1,h2 { color: var(--text-fg-color); - font-size: 150%; font-weight: bold; } +h1 { + font-size: 150%; +} + h2 { - color: var(--text-fg-color); font-size: 110%; - font-weight: bold; } p,dl,dd { -- 2.43.0