From 663edf97cd3b3f3ad525d3415c2be6baf8dfa3b7 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Thu, 26 Jun 2025 12:23:02 -0400 Subject: [PATCH] Add tiny footer --- www/index.html | 10 ++++++++++ www/styles.css | 22 ++++++++++++++++++++-- 2 files changed, 30 insertions(+), 2 deletions(-) diff --git a/www/index.html b/www/index.html index e057785..c924ff4 100644 --- a/www/index.html +++ b/www/index.html @@ -137,6 +137,16 @@ // Initial load loadData(); + + + + \ No newline at end of file diff --git a/www/styles.css b/www/styles.css index 2f83b63..a1b5dd5 100644 --- a/www/styles.css +++ b/www/styles.css @@ -133,8 +133,8 @@ h1 { height: 100px; pointer-events: auto; /* DEBUG: Temporary visible area for clickable link */ - outline: 2px dashed #ff0; - background: rgba(255, 255, 0, 0.2); + /* outline: 2px dashed #ff0; + background: rgba(255, 255, 0, 0.2); */ } .artist-link a { @@ -156,3 +156,21 @@ h1 { background: #fff; color: #23232b; } + +/* Footer */ +.tiny-footer { + font-size: 0.75rem; + color: #aaa; + text-align: center; + margin-top: -10px; /* shifts footer upward */ + padding: 5px 10px; +} + +.tiny-footer a { + color: #aaa; + text-decoration: underline; +} + +.tiny-footer a:hover { + color: #fff; +}