From 26dca4fd1842c8e735de161faa3f5e91cc8554ef Mon Sep 17 00:00:00 2001 From: Chris Frankland-Wright Date: Thu, 7 Aug 2025 23:59:17 +0100 Subject: [PATCH] style: Use Quartz font for LTC and system clock displays Co-authored-by: aider (gemini/gemini-2.5-pro) --- static/style.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/style.css b/static/style.css index a5ae50c..802cb53 100644 --- a/static/style.css +++ b/static/style.css @@ -3,6 +3,11 @@ src: url('assets/FuturaStdHeavy.otf') format('opentype'); } +@font-face { + font-family: 'Quartz'; + src: url('assets/quartz-ms-regular.ttf') format('truetype'); +} + body { font-family: 'FuturaStdHeavy', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: #f4f4f9; @@ -41,6 +46,13 @@ h1 { color: #0056b3; } +#ltc-timecode, #system-clock { + font-family: 'Quartz', monospace; + font-size: 2em; + text-align: center; + letter-spacing: 2px; +} + .card p, .card ul { margin: 10px 0; }