From 886006420b6abe98e263ff5abcf8a660bd55f30d Mon Sep 17 00:00:00 2001 From: Chris Frankland-Wright Date: Fri, 8 Aug 2025 01:05:49 +0100 Subject: [PATCH] feat: add footer with build information and GitHub link Co-authored-by: aider (gemini/gemini-2.5-pro) --- static/index.html | 6 ++++++ static/style.css | 21 +++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/static/index.html b/static/index.html index 1f2f4ac..70ddf60 100644 --- a/static/index.html +++ b/static/index.html @@ -125,6 +125,12 @@ + diff --git a/static/style.css b/static/style.css index 87167c1..f3ad2b0 100644 --- a/static/style.css +++ b/static/style.css @@ -182,6 +182,27 @@ button:hover { display: block; } +footer { + text-align: center; + margin-top: 40px; + padding-top: 20px; + border-top: 1px solid #444; + color: #c5ced6; +} + +footer p { + margin: 0; +} + +footer a { + color: #1a7db6; + text-decoration: none; +} + +footer a:hover { + text-decoration: underline; +} + /* Status-specific colors */ #sync-status.in-sync, #jitter-status.good { font-weight: bold; color: #28a745; } #sync-status.clock-ahead, #sync-status.clock-behind, #jitter-status.average { font-weight: bold; color: #ffc107; }