From a0fdba329597e9a6ceca45165da77656fe908e48 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 6 Mar 2024 17:38:16 +0100 Subject: [PATCH] css: fine-tune h4, h5, h6 headings font-sizes Else h6 was quite a bit tinier than the actual paragraph text, and it doesn't hurts that h4 stands a bit out more. Signed-off-by: Thomas Lamprecht --- asciidoc/pve-docs.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/asciidoc/pve-docs.css b/asciidoc/pve-docs.css index 45e2b11..19c176e 100644 --- a/asciidoc/pve-docs.css +++ b/asciidoc/pve-docs.css @@ -30,6 +30,17 @@ div.admonitionblock td.icon > img { padding: 0.15em; } +/* Fine-tune headings a bit */ +h4 { + font-size: 1.1em; +} +h5 { + font-size: 1.05em; +} +h6 { + font-size: 1.0em; +} + @media screen and (prefers-color-scheme: dark) { :root { color-scheme: dark; -- 2.39.5