From 459d1a3f6ac2cc39d727fa3e4c34586beef49a7b Mon Sep 17 00:00:00 2001 From: Heiko August Date: Tue, 27 Jan 2026 18:05:10 +0100 Subject: [PATCH 1/4] Change: set the font size to 1rem and to 0.86em to its children Signed-off-by: Heiko August --- static/css/base.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/css/base.css b/static/css/base.css index 15c532bd..134da483 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -169,6 +169,7 @@ main { flex: 1; } body > footer { + font-size: 1rem; display: flex; justify-content: space-between; background-color: white; @@ -179,8 +180,8 @@ body > footer { box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.11); } body > footer > * { - font-size: 11px; padding: 3px 5px; + font-size: 0.86em; } #content-bottom-links { display: flex; From 7d04fcd58d3c2c47d9c4a1748ffddb79d54a6124 Mon Sep 17 00:00:00 2001 From: Heiko August Date: Tue, 27 Jan 2026 18:06:41 +0100 Subject: [PATCH 2/4] Change: replace pixel-based values for margin and padding of the footer with em-based ones Signed-off-by: Heiko August --- static/css/base.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/static/css/base.css b/static/css/base.css index 134da483..e8f72e36 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -173,15 +173,16 @@ body > footer { display: flex; justify-content: space-between; background-color: white; - margin: 0 auto 36px auto; - padding: 7px 7px 6px 7px; + margin-block: 0 2.5em; + margin-inline: auto; + padding: 0.5em; overflow: hidden; border-radius: 5px; box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.11); } body > footer > * { - padding: 3px 5px; font-size: 0.86em; + padding: 0.25em; } #content-bottom-links { display: flex; From b4faf0ec4cc4fb87f1fb17cc5618fcb5af302ad7 Mon Sep 17 00:00:00 2001 From: Heiko August Date: Tue, 27 Jan 2026 18:08:51 +0100 Subject: [PATCH 3/4] Change: replace the pipe symbols after the links with borders Signed-off-by: Heiko August --- static/css/base.css | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/static/css/base.css b/static/css/base.css index e8f72e36..9177e962 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -189,17 +189,20 @@ body > footer > * { list-style: none; margin: 0; } -#content-bottom-links li:not(:last-child)::after { - content: "|"; +body > footer li { + padding-inline: 0 0.25em; +} +body > footer li :not(:last-child) { + border-inline-end: 0.125em solid; } #content-bottom-links li a { display: inline-block; } #content-bottom-links li:not(:first-child) a { - margin-left: 3px; + margin-inline-start: 0.5em; } #content-bottom-links li:not(:last-child) a { - margin-right: 3px; + margin-inline-end: 0.5em; } #hr-clear { clear: both; From 83c7df52a671bcb5ad8b8b7530682495100f81b6 Mon Sep 17 00:00:00 2001 From: Heiko August Date: Tue, 27 Jan 2026 18:35:54 +0100 Subject: [PATCH 4/4] Change: replace the pixel-based radius sizes of 6px with a size of 0.5em Signed-off-by: Heiko August --- static/css/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/base.css b/static/css/base.css index 9177e962..a8fb9f4e 100644 --- a/static/css/base.css +++ b/static/css/base.css @@ -177,7 +177,7 @@ body > footer { margin-inline: auto; padding: 0.5em; overflow: hidden; - border-radius: 5px; + border-radius: 0.5em; box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.11); } body > footer > * {