1
0

Bohne: Footer hinzugefügt

This commit is contained in:
2025-03-20 14:20:03 +01:00
parent 8cc7027882
commit 00f4522359

View File

@@ -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); }
}
</style>
</head>
<body>
@@ -358,8 +389,18 @@
}
updateStats();
// Jahr für das Copyright aktualisieren
document.getElementById('current-year').textContent = new Date().getFullYear();
});
</script>
<footer>
<p>
<a href="https://tools.ponywave.de/">Zurück zur Startseite</a> |
&copy; <span id="current-year"></span> Akamaru | Made with <span class="heart">❤️</span> by Claude
</p>
</footer>
</body>
</html>