From ba135f0cb5095dd325c6ec50aac223b974a724be Mon Sep 17 00:00:00 2001 From: Pontoporeia Date: Tue, 7 Apr 2026 15:20:10 +0200 Subject: [PATCH] fix: replace 'Xamxam' with 'Posterg' in public nav header --- TODO.md | 1 + public/assets/css/common.css | 10 ++++++++++ templates/header.php | 2 +- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/TODO.md b/TODO.md index be25b56..a4c0eac 100644 --- a/TODO.md +++ b/TODO.md @@ -1,6 +1,7 @@ # TODO ## Done +- [x] Fix nav logo: revert to "Xamxam", apply display font (Combined), step-2 size, letter-spacing, text-shadow via .nav-logo class - [x] Bump all font sizes ~10% across all CSS files (admin, system, search, main, apropos, common, tfe) - [x] Migrate to utopia fluid type scale (--step--2 → --step-5) and space scale (--space-3xs → --space-3xl) across all CSS files - [x] Split search logic into search.php diff --git a/public/assets/css/common.css b/public/assets/css/common.css index 92bbaf2..2605a99 100644 --- a/public/assets/css/common.css +++ b/public/assets/css/common.css @@ -91,6 +91,16 @@ body > header nav { justify-content: space-between; } +.nav-logo { + font-family: var(--font-display); + font-size: var(--step-2); + letter-spacing: 0.12em; + text-transform: uppercase; + color: var(--accent-foreground); + text-decoration: none; + text-shadow: 0 0 16px var(--header-shadow-strong), 0 0 32px var(--header-shadow-soft); +} + .nav-left { display: flex; align-items: center; diff --git a/templates/header.php b/templates/header.php index abe1ae8..c0001ef 100644 --- a/templates/header.php +++ b/templates/header.php @@ -36,7 +36,7 @@ $_thesisId = $_GET['id'] ?? null;