Breakout: Favicon & Footer hinzugefügt
This commit is contained in:
parent
00f4522359
commit
f276340cc0
BIN
breakout/icon.png
Normal file
BIN
breakout/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
@ -3,11 +3,13 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Breakout</title>
|
||||
<meta property="og:title" content="Breakout">
|
||||
<title>Breakout | PonyWave Tools</title>
|
||||
<link rel="icon" href="https://tools.ponywave.de/breakout/icon.png">
|
||||
<meta property="og:title" content="Breakout | PonyWave Tools">
|
||||
<meta property="og:description" content="Ein klassisches Breakout-Spiel in HTML">
|
||||
<meta property="og:type" content="game">
|
||||
<meta property="og:url" content="https://tools.ponywave.de/breakout">
|
||||
<meta property="og:image" content="https://tools.ponywave.de/breakout/icon.png">
|
||||
|
||||
<!-- Umami Tracking -->
|
||||
<script defer src="https://stats.ponywave.de/script" data-website-id="9ef713d2-adb9-4906-9df5-708d8a8b9131" data-tag="breakout"></script>
|
||||
@ -242,6 +244,17 @@
|
||||
footer a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.heart {
|
||||
color: #ff5e78;
|
||||
animation: heartbeat 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes heartbeat {
|
||||
0% { transform: scale(1); }
|
||||
50% { transform: scale(1.2); }
|
||||
100% { transform: scale(1); }
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.controls {
|
||||
@ -345,7 +358,7 @@
|
||||
</div>
|
||||
|
||||
<footer>
|
||||
<a href="/">Zurück zur Startseite</a> | © <span id="currentYear"></span> Akamaru
|
||||
<a href="/">Zurück zur Startseite</a> | © <span id="currentYear"></span> Akamaru | Made with <span class="heart">❤️</span> by Claude
|
||||
</footer>
|
||||
|
||||
<script>
|
||||
|
Loading…
x
Reference in New Issue
Block a user