Sysinfo: Favicon & Footer hinzugefügt
This commit is contained in:
parent
35e51d5d83
commit
0b33c8cfd7
BIN
sys_info/icon.png
Normal file
BIN
sys_info/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 41 KiB |
@ -3,11 +3,13 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Systeminformationen</title>
|
||||
<meta property="og:title" content="Systeminformationen">
|
||||
<title>Systeminformationen | PonyWave Tools</title>
|
||||
<meta property="og:title" content="Systeminformationen | PonyWave Tools">
|
||||
<meta property="og:description" content="Zeigt Infos zu Browser, Gerät, Betriebssystem, User-Agent und IPs an">
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://tools.ponywave.de/sys_info">
|
||||
<meta property="og:image" content="https://tools.ponywave.de/sys_info/icon.png">
|
||||
<link rel="icon" href="https://tools.ponywave.de/sys_info/icon.png">
|
||||
<script defer src="https://stats.ponywave.de/script" data-website-id="9ef713d2-adb9-4906-9df5-708d8a8b9131" data-tag="sys_info"></script>
|
||||
<style>
|
||||
:root {
|
||||
@ -250,6 +252,39 @@
|
||||
background: var(--box-bg);
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
footer {
|
||||
width: 100%;
|
||||
background-color: rgba(var(--bg-color), 0.95);
|
||||
color: var(--text-color);
|
||||
text-align: center;
|
||||
padding: 10px 0;
|
||||
margin-top: 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 -5px 15px var(--shadow);
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: var(--accent-1);
|
||||
}
|
||||
|
||||
.heart {
|
||||
color: #ff5c8d;
|
||||
animation: heartbeat 1.5s infinite;
|
||||
}
|
||||
|
||||
@keyframes heartbeat {
|
||||
0% { transform: scale(1); }
|
||||
50% { transform: scale(1.2); }
|
||||
100% { transform: scale(1); }
|
||||
}
|
||||
</style>
|
||||
<script src="https://html2canvas.hertzen.com/dist/html2canvas.min.js"></script>
|
||||
</head>
|
||||
@ -796,6 +831,16 @@
|
||||
// Initialisierung der Informationen
|
||||
updateBrowserInfo();
|
||||
getIP(); // Initialisiere IP-Abfrage
|
||||
|
||||
// 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> |
|
||||
© <span id="current-year"></span> Akamaru | Made with <span class="heart">❤️</span> by DeepSeek
|
||||
</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user