From 60e4508431efe31f9c5b45365174978bbcda1e57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Erbsh=C3=A4u=C3=9Fer?= Date: Sun, 24 May 2026 09:22:46 +0200 Subject: [PATCH] add styles for headings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tobias Erbshäußer --- frontend/src/styles/default.css | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/frontend/src/styles/default.css b/frontend/src/styles/default.css index d7e20c8..4d50495 100644 --- a/frontend/src/styles/default.css +++ b/frontend/src/styles/default.css @@ -19,7 +19,7 @@ html { box-sizing: border-box; font-family: "Adwaita Sans", sans-serif; font-size: 1.4rem; - line-height: 2.1rem; + line-height: 2rem; margin: 0; padding: 0; } @@ -50,3 +50,33 @@ a:focus { outline-style: solid; outline-width: 0.1rem; } + +h1 { + font-size: 4rem; + line-height: 4.6rem; + padding-bottom: 1rem; +} + +h2 { + font-size: 3.2rem; + line-height: 3.8rem; + padding-bottom: 1rem; +} + +h3 { + font-size: 2.8rem; + line-height: 3.4rem; + padding-bottom: 1rem; +} + +h4 { + font-size: 2.4rem; + line-height: 3rem; + padding-bottom: 1rem; +} + +h5 { + font-size: 2rem; + line-height: 2.6rem; + padding-bottom: 1rem; +}