From 46d78f42e32441882d61c9b0153da5322e1db457 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Mon, 29 Dec 2025 12:52:37 +0000 Subject: [PATCH] Add Wario sprite to footer with Game Boy green tint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sprite image needs to be saved as /public/wario-sprite.png 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- index.html | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 83b6f43..2a59711 100644 --- a/index.html +++ b/index.html @@ -601,7 +601,20 @@ gap: calc(var(--spacing-unit) * 1.5); flex-wrap: wrap; } - + + .footer-mascot { + margin-top: calc(var(--spacing-unit) * 4); + text-align: center; + } + + .wario-sprite { + width: 80px; + height: auto; + /* Game Boy green tint using sepia + hue-rotate */ + filter: sepia(100%) hue-rotate(50deg) saturate(200%) brightness(0.9); + opacity: 0.8; + } + .player-section { margin: 30px 0; display: none; @@ -1129,6 +1142,10 @@ + +