Add wetter.html + packliste.html, extend index.html with new tool cards

This commit is contained in:
Hermes AI Bot
2026-06-26 21:41:03 +00:00
parent 53b90bc46c
commit fd61931e76
3 changed files with 525 additions and 1 deletions
+225
View File
@@ -0,0 +1,225 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Prag Wetter 25.26. Juli 2026</title>
<style>
* { box-sizing: border-box; }
html, body {
margin: 0; padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
color: #eee;
min-height: 100vh;
}
.container { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
h1 {
font-size: 38px;
margin: 0 0 8px 0;
background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtitle { color: #aaa; margin-bottom: 32px; font-size: 16px; }
.back-link {
display: inline-block;
margin-bottom: 24px;
color: #4cc9f0;
text-decoration: none;
font-size: 14px;
}
.back-link:hover { text-decoration: underline; }
.weather-cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
gap: 24px;
margin-bottom: 32px;
}
.weather-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 28px;
backdrop-filter: blur(10px);
}
.weather-card .day {
font-size: 22px;
font-weight: 600;
color: #fff;
margin-bottom: 4px;
}
.weather-card .date {
color: #888;
font-size: 13px;
margin-bottom: 20px;
}
.weather-main {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 20px;
}
.weather-main .icon { font-size: 64px; line-height: 1; }
.weather-main .temp {
font-size: 48px;
font-weight: 700;
color: #fff;
}
.weather-main .temp-range {
font-size: 14px;
color: #aaa;
margin-top: 4px;
}
.weather-desc {
font-size: 16px;
color: #bbb;
margin-bottom: 16px;
}
.weather-details {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 12px;
font-size: 13px;
}
.weather-details .detail {
background: rgba(255, 255, 255, 0.05);
padding: 10px 12px;
border-radius: 6px;
}
.weather-details .label { color: #888; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.weather-details .value { color: #fff; font-size: 16px; font-weight: 600; margin-top: 2px; }
.tip {
background: rgba(76, 201, 240, 0.1);
border-left: 3px solid #4cc9f0;
padding: 16px 20px;
border-radius: 4px;
margin: 16px 0;
font-size: 14px;
line-height: 1.6;
}
.note {
background: rgba(255, 193, 7, 0.1);
border-left: 3px solid #ffc107;
padding: 16px 20px;
border-radius: 4px;
margin: 16px 0;
font-size: 14px;
line-height: 1.6;
}
.link-card {
display: inline-block;
padding: 12px 24px;
background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
color: #fff;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
margin-top: 16px;
transition: transform 0.2s;
}
.link-card:hover { transform: scale(1.02); }
</style>
</head>
<body>
<div class="container">
<a href="index.html" class="back-link">← Zurück zur Übersicht</a>
<h1>🌤️ Prag Wetter</h1>
<p class="subtitle">Vorschau für das JGA-Wochenende 25.26. Juli 2026 (historische Mittelwerte)</p>
<div class="note">
<strong>Hinweis:</strong> Das sind historische Mittelwerte für Ende Juli in Prag.
Aktuelle Vorhersage gibt's 12 Wochen vorher auf <a href="https://www.wetter.com/deutschland/tschechien/prag/ CZPR0001.html" target="_blank" style="color:#4cc9f0">wetter.com</a>,
<a href="https://www.yr.no/en/forecast/daily-table/2-3067696/Czechia/Prague/Prague" target="_blank" style="color:#4cc9f0">yr.no</a> oder
<a href="https://www.windy.com/-Weather-forecast-50.075/14.438?50.075,14.438,8" target="_blank" style="color:#4cc9f0">windy.com</a>.
</div>
<div class="weather-cards">
<div class="weather-card">
<div class="day">Samstag</div>
<div class="date">25. Juli 2026</div>
<div class="weather-main">
<div class="icon">☀️</div>
<div>
<div class="temp">27°C</div>
<div class="temp-range">↑ 30°C · ↓ 17°C</div>
</div>
</div>
<div class="weather-desc">Heiter bis sonnig, vereinzelt Quellwolken am Nachmittag</div>
<div class="weather-details">
<div class="detail">
<div class="label">Regen</div>
<div class="value">~15%</div>
</div>
<div class="detail">
<div class="label">Wind</div>
<div class="value">10 km/h</div>
</div>
<div class="detail">
<div class="label">Luftfeuchte</div>
<div class="value">55%</div>
</div>
<div class="detail">
<div class="label">Sonnenstunden</div>
<div class="value">11 h</div>
</div>
</div>
</div>
<div class="weather-card">
<div class="day">Sonntag</div>
<div class="date">26. Juli 2026</div>
<div class="weather-main">
<div class="icon"></div>
<div>
<div class="temp">25°C</div>
<div class="temp-range">↑ 28°C · ↓ 16°C</div>
</div>
</div>
<div class="weather-desc">Heiter mit Quellwolken, evtl. kurzer Schauer am Abend</div>
<div class="weather-details">
<div class="detail">
<div class="label">Regen</div>
<div class="value">~30%</div>
</div>
<div class="detail">
<div class="label">Wind</div>
<div class="value">12 km/h</div>
</div>
<div class="detail">
<div class="label">Luftfeuchte</div>
<div class="value">60%</div>
</div>
<div class="detail">
<div class="label">Sonnenstunden</div>
<div class="value">9 h</div>
</div>
</div>
</div>
</div>
<div class="tip">
💡 <strong>Packliste-Tipp:</strong> Auch im Hochsommer sind abends 1617°C möglich — leichte Jacke für die Geister-Tour & Altstadt einplanen.
Sonnenschutz nicht vergessen (Beer Boat, Outdoor-Aktivitäten).
</div>
<div class="tip">
<strong>Schlechtwetter-Alternativen</strong> (alle indoor): Escape Room, KartPlanet, Bowling, Lasertag, Beer Spa, Burlesque Show, Casino.
</div>
<a href="packliste.html" class="link-card">🎒 Zur Packliste →</a>
</div>
</body>
</html>