Redesign: neutral dark theme, blue accent, color emojis, add favicon, remove git refs
This commit is contained in:
+42
-28
@@ -4,30 +4,29 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Prag Wetter 25.–26. Juli 2026</title>
|
||||
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🧭</text></svg>">
|
||||
<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;
|
||||
background: #1c1c1f;
|
||||
color: #e8e8ea;
|
||||
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;
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
}
|
||||
.subtitle { color: #aaa; margin-bottom: 32px; font-size: 16px; }
|
||||
.subtitle { color: #999; margin-bottom: 32px; font-size: 16px; }
|
||||
|
||||
.back-link {
|
||||
display: inline-block;
|
||||
margin-bottom: 24px;
|
||||
color: #4cc9f0;
|
||||
color: #60a5fa;
|
||||
text-decoration: none;
|
||||
font-size: 14px;
|
||||
}
|
||||
@@ -41,11 +40,10 @@
|
||||
}
|
||||
|
||||
.weather-card {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 16px;
|
||||
background: #26262a;
|
||||
border: 1px solid #353539;
|
||||
border-radius: 12px;
|
||||
padding: 28px;
|
||||
backdrop-filter: blur(10px);
|
||||
}
|
||||
.weather-card .day {
|
||||
font-size: 22px;
|
||||
@@ -64,7 +62,11 @@
|
||||
gap: 16px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.weather-main .icon { font-size: 64px; line-height: 1; }
|
||||
.weather-main .icon {
|
||||
font-size: 64px;
|
||||
line-height: 1;
|
||||
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji;
|
||||
}
|
||||
.weather-main .temp {
|
||||
font-size: 48px;
|
||||
font-weight: 700;
|
||||
@@ -87,16 +89,26 @@
|
||||
font-size: 13px;
|
||||
}
|
||||
.weather-details .detail {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
background: #2d2d31;
|
||||
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; }
|
||||
.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;
|
||||
background: #26262a;
|
||||
border-left: 3px solid #3b82f6;
|
||||
padding: 16px 20px;
|
||||
border-radius: 4px;
|
||||
margin: 16px 0;
|
||||
@@ -105,8 +117,8 @@
|
||||
}
|
||||
|
||||
.note {
|
||||
background: rgba(255, 193, 7, 0.1);
|
||||
border-left: 3px solid #ffc107;
|
||||
background: #26262a;
|
||||
border-left: 3px solid #6b7280;
|
||||
padding: 16px 20px;
|
||||
border-radius: 4px;
|
||||
margin: 16px 0;
|
||||
@@ -114,18 +126,19 @@
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
a { color: #60a5fa; }
|
||||
|
||||
.link-card {
|
||||
display: inline-block;
|
||||
padding: 12px 24px;
|
||||
background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
|
||||
background: #3b82f6;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
border-radius: 8px;
|
||||
font-weight: 600;
|
||||
border-radius: 6px;
|
||||
font-weight: 500;
|
||||
margin-top: 16px;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
.link-card:hover { transform: scale(1.02); }
|
||||
.link-card:hover { background: #2563eb; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -138,9 +151,10 @@
|
||||
|
||||
<div class="note">
|
||||
ℹ️ <strong>Hinweis:</strong> Das sind historische Mittelwerte für Ende Juli in Prag.
|
||||
Aktuelle Vorhersage gibt's 1–2 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>.
|
||||
Aktuelle Vorhersage gibt's 1–2 Wochen vorher auf
|
||||
<a href="https://www.wetter.com/deutschland/tschechien/prag/ CZPR0001.html" target="_blank">wetter.com</a>,
|
||||
<a href="https://www.yr.no/en/forecast/daily-table/2-3067696/Czechia/Prague/Prague" target="_blank">yr.no</a> oder
|
||||
<a href="https://www.windy.com/-Weather-forecast-50.075/14.438?50.075,14.438,8" target="_blank">windy.com</a>.
|
||||
</div>
|
||||
|
||||
<div class="weather-cards">
|
||||
|
||||
Reference in New Issue
Block a user