115 lines
4.5 KiB
HTML
115 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PonyWave Tools</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: #f0f0f0;
|
|
margin: 0;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
text-align: center;
|
|
color: #2c3e50;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.tools-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 20px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.tool-bubble {
|
|
background: white;
|
|
border-radius: 15px;
|
|
padding: 20px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
transition: transform 0.2s ease;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
.tool-bubble:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
.tool-title {
|
|
color: #7f006e;
|
|
margin: 0 0 10px 0;
|
|
font-size: 1.4em;
|
|
}
|
|
|
|
.tool-description {
|
|
color: #666;
|
|
margin: 0 0 10px 0;
|
|
line-height: 1.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>PonyWave Tools</h1>
|
|
|
|
<div class="tools-grid">
|
|
<a href="https://tools.ponywave.de/bohne" class="tool-bubble">
|
|
<h2 class="tool-title">Julien Bam - Songs aus der Bohne Übersicht</h2>
|
|
<p class="tool-description">Eine Übersicht aller Videos der "Songs aus der Bohne" Saga von Julien Bam</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/sys_info" class="tool-bubble">
|
|
<h2 class="tool-title">Systeminformationen</h2>
|
|
<p class="tool-description">Zeigt Infos zu Browser, Gerät, detriebssysten, User-Agent und IPs an.</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/pinkie_timer" class="tool-bubble">
|
|
<h2 class="tool-title">Pinkie Pie Timer</h2>
|
|
<p class="tool-description">Ein Pinkie Pie Timer</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/shape_shifter" class="tool-bubble">
|
|
<h2 class="tool-title">Shape Shifter</h2>
|
|
<p class="tool-description">Ein Canvas-Experiment, bei dem Partikel verwendet werden, um verschiedene Formen basierend auf Benutzereingaben darzustellen. Unterstützt mehrere Modi: Text, Countdown, Uhrzeit und Icons.</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/yt_thumb" class="tool-bubble">
|
|
<h2 class="tool-title">YouTube Thumbnail Viewer</h2>
|
|
<p class="tool-description">Zeige Thumbnails zu YouTube-Videos an und speicher sie</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/kemonogen" class="tool-bubble">
|
|
<h2 class="tool-title">Kemono Friends Logo Generator</h2>
|
|
<p class="tool-description">Generiere Logos im Kemono Friends Stil</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/cell" class="tool-bubble">
|
|
<h2 class="tool-title">Platelets poking</h2>
|
|
<p class="tool-description">Stupse Platelets an!</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/flash_dl" class="tool-bubble">
|
|
<h2 class="tool-title">Flash Downloader</h2>
|
|
<p class="tool-description">Downloade Flash-Dateinen von Z0R und FUS RO GA</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/depp_gpt" class="tool-bubble">
|
|
<h2 class="tool-title">Depp GPT</h2>
|
|
<p class="tool-description">Eine lustige KI</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/checkwave" class="tool-bubble">
|
|
<h2 class="tool-title">Check Wave</h2>
|
|
<p class="tool-description">Kleine Checkwave Animation</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/dogify" class="tool-bubble">
|
|
<h2 class="tool-title">Dogify</h2>
|
|
<p class="tool-description">Wow such doge many fun (In Arbeit)</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/ba_memory" class="tool-bubble">
|
|
<h2 class="tool-title">Blue Archive Memory</h2>
|
|
<p class="tool-description">Memory-Spiel mit Blue Archive Charactere</p>
|
|
</a>
|
|
<a href="https://tools.ponywave.de/emoji" class="tool-bubble">
|
|
<h2 class="tool-title">Emoji Rain</h2>
|
|
<p class="tool-description">Lass es Emoji regnen!</p>
|
|
</a>
|
|
</div>
|
|
</body>
|
|
</html> |