From fd02fb29d829fc35ea65fb2cab201bf25bcfedae Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Wed, 14 Aug 2024 18:17:36 +0200 Subject: [PATCH] CSS: Decrease the size of h6 headlines Signed-off-by: Michael Tremer --- html/html/themes/ipfire/include/css/style.css | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/html/html/themes/ipfire/include/css/style.css b/html/html/themes/ipfire/include/css/style.css index 645733b74a..18dfe347a0 100644 --- a/html/html/themes/ipfire/include/css/style.css +++ b/html/html/themes/ipfire/include/css/style.css @@ -96,10 +96,14 @@ body { color: #363636; } -h1, h2, h3, h4, h5, h6 { +h1, h2, h3, h4, h5 { font-size: 20px; } +h6 { + font-size: 1em; +} + br.clear { clear: both; } @@ -345,6 +349,12 @@ table.form tr td textarea { width: 100%; } +table.form tr.header td { + font-weight: bold; + + margin-top: 1rem; +} + table.form tr.action td { padding-top: 1rem; -- 2.39.5