From 00f4522359d21037628328da53e292520d324116 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Thu, 20 Mar 2025 14:20:03 +0100 Subject: [PATCH] =?UTF-8?q?Bohne:=20Footer=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bohne/index.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/bohne/index.html b/bohne/index.html index 2e7fd31..0e005d8 100644 --- a/bohne/index.html +++ b/bohne/index.html @@ -66,6 +66,37 @@ font-size: 0.9em; color: #666; } + + footer { + margin-top: 2rem; + padding: 1rem 0; + color: #666; + font-size: 0.9rem; + text-align: center; + border-top: 1px solid #ddd; + width: 100%; + } + + footer a { + color: #4CAF50; + text-decoration: none; + transition: color 0.3s; + } + + footer a:hover { + text-decoration: underline; + } + + .heart { + color: #e74c3c; + animation: heartbeat 1.5s infinite; + } + + @keyframes heartbeat { + 0% { transform: scale(1); } + 50% { transform: scale(1.2); } + 100% { transform: scale(1); } + } @@ -358,8 +389,18 @@ } updateStats(); + + // Jahr für das Copyright aktualisieren + document.getElementById('current-year').textContent = new Date().getFullYear(); }); + +