From ad0b3561b6cb953de3b80aee18e03c42f32ce317 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Fri, 21 Mar 2025 13:16:19 +0100 Subject: [PATCH] =?UTF-8?q?Solitaire:=20Favicon=20&=20Footer=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- solitaire/index.html | 55 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 3 deletions(-) diff --git a/solitaire/index.html b/solitaire/index.html index 52e5c02..2339d43 100644 --- a/solitaire/index.html +++ b/solitaire/index.html @@ -3,8 +3,9 @@ - Solitaire - + Solitaire | PonyWave Tools + + @@ -269,7 +270,7 @@ .credits { position: fixed; - bottom: 10px; + bottom: 50px; left: 10px; background: #1e3d2f; padding: 10px; @@ -277,6 +278,7 @@ font-size: 0.8em; opacity: 0.8; transition: opacity 0.3s ease; + z-index: 9; } .credits:hover { @@ -341,6 +343,43 @@ .give-up-btn:hover { background: #c0392b; } + + footer { + width: 100%; + background-color: rgba(0, 0, 0, 0.7); + color: white; + text-align: center; + padding: 10px 0; + margin: 0; + position: fixed; + bottom: 0; + left: 0; + right: 0; + box-sizing: border-box; + z-index: 10; + } + + footer a { + color: #fff; + text-decoration: none; + font-weight: bold; + transition: color 0.3s; + } + + footer a:hover { + color: #3498db; + } + + .heart { + color: #ff5c8d; + animation: heartbeat 1.5s infinite; + } + + @keyframes heartbeat { + 0% { transform: scale(1); } + 50% { transform: scale(1.2); } + 100% { transform: scale(1); } + } @@ -434,6 +473,13 @@ + + \ No newline at end of file