Redesign: neutral dark theme, blue accent, color emojis, add favicon, remove git refs
This commit is contained in:
+46
-81
@@ -4,13 +4,14 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>JGA Prag 2026 – Übersicht</title>
|
<title>JGA Prag 2026 – Übersicht</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>
|
<style>
|
||||||
* { box-sizing: border-box; }
|
* { box-sizing: border-box; }
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0; padding: 0;
|
margin: 0; padding: 0;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
||||||
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
background: #1c1c1f;
|
||||||
color: #eee;
|
color: #e8e8ea;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -27,25 +28,28 @@
|
|||||||
h1 {
|
h1 {
|
||||||
font-size: 42px;
|
font-size: 42px;
|
||||||
margin: 0 0 12px 0;
|
margin: 0 0 12px 0;
|
||||||
background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
|
color: #fff;
|
||||||
-webkit-background-clip: text;
|
font-weight: 700;
|
||||||
background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
}
|
}
|
||||||
.subtitle {
|
.subtitle {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #aaa;
|
color: #999;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
.badge {
|
.badge {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: rgba(247, 37, 133, 0.15);
|
background: rgba(59, 130, 246, 0.15);
|
||||||
color: #f72585;
|
color: #60a5fa;
|
||||||
padding: 4px 12px;
|
padding: 4px 12px;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
border: 1px solid rgba(247, 37, 133, 0.3);
|
border: 1px solid rgba(59, 130, 246, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Emoji global in Original-Farbe */
|
||||||
|
.card-icon, h1, .badge, .info-item .label {
|
||||||
|
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Segoe UI Symbol", emoji, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Karten-Grid */
|
/* Karten-Grid */
|
||||||
@@ -57,72 +61,57 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.card {
|
.card {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: #26262a;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid #353539;
|
||||||
border-radius: 16px;
|
border-radius: 12px;
|
||||||
padding: 28px;
|
padding: 28px;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
.card:hover {
|
.card:hover {
|
||||||
transform: translateY(-4px);
|
transform: translateY(-2px);
|
||||||
border-color: rgba(247, 37, 133, 0.4);
|
border-color: #3b82f6;
|
||||||
box-shadow: 0 12px 32px rgba(247, 37, 133, 0.15);
|
|
||||||
}
|
}
|
||||||
.card-icon {
|
.card-icon {
|
||||||
font-size: 56px;
|
font-size: 48px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
}
|
}
|
||||||
.card h2 {
|
.card h2 {
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
font-size: 22px;
|
font-size: 20px;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
.card .description {
|
.card .description {
|
||||||
color: #bbb;
|
color: #aaa;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
margin: 0 0 16px 0;
|
margin: 0 0 16px 0;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
}
|
}
|
||||||
.card .meta {
|
|
||||||
display: flex;
|
|
||||||
gap: 12px;
|
|
||||||
font-size: 12px;
|
|
||||||
color: #888;
|
|
||||||
margin-bottom: 16px;
|
|
||||||
}
|
|
||||||
.card .meta span {
|
|
||||||
background: rgba(255, 255, 255, 0.05);
|
|
||||||
padding: 4px 8px;
|
|
||||||
border-radius: 6px;
|
|
||||||
}
|
|
||||||
.card .open-btn {
|
.card .open-btn {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 12px 24px;
|
padding: 10px 20px;
|
||||||
background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
|
background: #3b82f6;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 8px;
|
border-radius: 6px;
|
||||||
font-weight: 600;
|
font-weight: 500;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: transform 0.2s;
|
transition: background 0.2s;
|
||||||
}
|
}
|
||||||
.card .open-btn:hover {
|
.card .open-btn:hover {
|
||||||
transform: scale(1.02);
|
background: #2563eb;
|
||||||
box-shadow: 0 4px 16px rgba(247, 37, 133, 0.4);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Section Header */
|
/* Section Header */
|
||||||
.section-title {
|
.section-title {
|
||||||
font-size: 24px;
|
font-size: 22px;
|
||||||
margin: 48px 0 24px 0;
|
margin: 48px 0 24px 0;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
border-bottom: 2px solid rgba(247, 37, 133, 0.3);
|
font-weight: 600;
|
||||||
padding-bottom: 8px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Info-Block */
|
/* Info-Block */
|
||||||
@@ -133,8 +122,8 @@
|
|||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
.info-item {
|
.info-item {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: #26262a;
|
||||||
border-left: 3px solid #f72585;
|
border-left: 3px solid #3b82f6;
|
||||||
padding: 16px;
|
padding: 16px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
}
|
}
|
||||||
@@ -155,7 +144,7 @@
|
|||||||
.quick-links {
|
.quick-links {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
gap: 12px;
|
gap: 10px;
|
||||||
margin-bottom: 32px;
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
.quick-links a {
|
.quick-links a {
|
||||||
@@ -163,37 +152,32 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 6px;
|
gap: 6px;
|
||||||
padding: 8px 14px;
|
padding: 8px 14px;
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: #26262a;
|
||||||
color: #fff;
|
color: #e8e8ea;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid #353539;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
.quick-links a:hover {
|
.quick-links a:hover {
|
||||||
background: rgba(247, 37, 133, 0.15);
|
background: #2d2d31;
|
||||||
border-color: rgba(247, 37, 133, 0.4);
|
border-color: #3b82f6;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Footer */
|
|
||||||
footer {
|
footer {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
padding: 32px 0 16px 0;
|
padding: 32px 0 16px 0;
|
||||||
color: #666;
|
color: #666;
|
||||||
font-size: 13px;
|
font-size: 12px;
|
||||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
border-top: 1px solid #2a2a2d;
|
||||||
margin-top: 48px;
|
margin-top: 48px;
|
||||||
}
|
}
|
||||||
footer a {
|
|
||||||
color: #f72585;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
h1 { font-size: 32px; }
|
h1 { font-size: 32px; }
|
||||||
.container { padding: 24px 16px; }
|
.container { padding: 24px 16px; }
|
||||||
.card-icon { font-size: 44px; }
|
.card-icon { font-size: 40px; }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
@@ -201,13 +185,13 @@
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<h1>🥳 JGA Prag 2026</h1>
|
<h1>🧭 JGA Prag 2026</h1>
|
||||||
<p class="subtitle">Interaktive Karten, Wetter-Vorschau & Packliste für den Junggesellenabschied</p>
|
<p class="subtitle">Interaktive Karten, Wetter-Vorschau & Packliste für den Junggesellenabschied</p>
|
||||||
<div class="badge">📅 25.–26. Juli 2026 · 👥 8 Personen · 🏨 Hotel Uno Prague</div>
|
<div class="badge">📅 25.–26. Juli 2026 · 👥 8 Personen · 🏨 Hotel Uno Prague</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<!-- Trip Overview -->
|
<!-- Trip Overview -->
|
||||||
<div class="section-title">📋 Trip-Übersicht</div>
|
<div class="section-title">Trip-Übersicht</div>
|
||||||
<div class="info-grid">
|
<div class="info-grid">
|
||||||
<div class="info-item">
|
<div class="info-item">
|
||||||
<div class="label">📅 Datum</div>
|
<div class="label">📅 Datum</div>
|
||||||
@@ -238,10 +222,6 @@
|
|||||||
Basis-Karte mit allen 11 Locations (Hotel + 10 Attraktionen).
|
Basis-Karte mit allen 11 Locations (Hotel + 10 Attraktionen).
|
||||||
Emoji-Marker, Popups mit Adressen und Preisen, Dark Mode.
|
Emoji-Marker, Popups mit Adressen und Preisen, Dark Mode.
|
||||||
</p>
|
</p>
|
||||||
<div class="meta">
|
|
||||||
<span>📦 10 KB</span>
|
|
||||||
<span>🎯 11 Marker</span>
|
|
||||||
</div>
|
|
||||||
<a href="tourenplan.html" class="open-btn">Karte öffnen →</a>
|
<a href="tourenplan.html" class="open-btn">Karte öffnen →</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -252,11 +232,6 @@
|
|||||||
Erweiterte Version mit 13 Tram-Linien und 10 wichtigen Haltestellen
|
Erweiterte Version mit 13 Tram-Linien und 10 wichtigen Haltestellen
|
||||||
eingezeichnet. Perfekt für die Routenplanung.
|
eingezeichnet. Perfekt für die Routenplanung.
|
||||||
</p>
|
</p>
|
||||||
<div class="meta">
|
|
||||||
<span>📦 597 KB</span>
|
|
||||||
<span>🚋 13 Linien</span>
|
|
||||||
<span>🚏 10 Haltestellen</span>
|
|
||||||
</div>
|
|
||||||
<a href="tourenplan-mit-tram.html" class="open-btn">Karte öffnen →</a>
|
<a href="tourenplan-mit-tram.html" class="open-btn">Karte öffnen →</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -273,10 +248,6 @@
|
|||||||
Historische Mittelwerte + Live-Links zu Wetterdiensten.
|
Historische Mittelwerte + Live-Links zu Wetterdiensten.
|
||||||
Packliste-Tipps und Schlechtwetter-Alternativen inklusive.
|
Packliste-Tipps und Schlechtwetter-Alternativen inklusive.
|
||||||
</p>
|
</p>
|
||||||
<div class="meta">
|
|
||||||
<span>📦 6.6 KB</span>
|
|
||||||
<span>🌡️ 25–27°C erwartet</span>
|
|
||||||
</div>
|
|
||||||
<a href="wetter.html" class="open-btn">Wetter öffnen →</a>
|
<a href="wetter.html" class="open-btn">Wetter öffnen →</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -287,10 +258,6 @@
|
|||||||
Interaktive Checkliste mit Fortschrittsbalken. Speichert dein Häkchen
|
Interaktive Checkliste mit Fortschrittsbalken. Speichert dein Häkchen
|
||||||
automatisch im Browser. Druckbar als PDF.
|
automatisch im Browser. Druckbar als PDF.
|
||||||
</p>
|
</p>
|
||||||
<div class="meta">
|
|
||||||
<span>📦 9.6 KB</span>
|
|
||||||
<span>☑️ Speichert Fortschritt</span>
|
|
||||||
</div>
|
|
||||||
<a href="packliste.html" class="open-btn">Packliste öffnen →</a>
|
<a href="packliste.html" class="open-btn">Packliste öffnen →</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -369,7 +336,7 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Quick Links -->
|
<!-- Quick Links -->
|
||||||
<div class="section-title">🔗 Quick Links</div>
|
<div class="section-title">Quick Links</div>
|
||||||
<div class="quick-links">
|
<div class="quick-links">
|
||||||
<a href="README.md" target="_blank">📖 README ansehen</a>
|
<a href="README.md" target="_blank">📖 README ansehen</a>
|
||||||
<a href="https://endorfin.cz/en/escape-games/" target="_blank">🔐 Endorfin</a>
|
<a href="https://endorfin.cz/en/escape-games/" target="_blank">🔐 Endorfin</a>
|
||||||
@@ -387,14 +354,12 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>📦 Repo: <a href="https://git.orfel.de/Orfel-HermesAI-Bot/JGA-2026">git.orfel.de/Orfel-HermesAI-Bot/JGA-2026</a></p>
|
<p>Stand: <span id="build-date"></span></p>
|
||||||
<p style="margin-top: 8px;">Erstellt mit 🛠️ Hermes AI · Stand: <span id="build-date"></span></p>
|
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Build-Datum
|
|
||||||
document.getElementById('build-date').textContent = new Date().toLocaleDateString('de-DE', { year: 'numeric', month: 'long', day: 'numeric' });
|
document.getElementById('build-date').textContent = new Date().toLocaleDateString('de-DE', { year: 'numeric', month: 'long', day: 'numeric' });
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
+21
-21
@@ -4,42 +4,40 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>JGA Prag Packliste</title>
|
<title>JGA Prag Packliste</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>
|
<style>
|
||||||
* { box-sizing: border-box; }
|
* { box-sizing: border-box; }
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0; padding: 0;
|
margin: 0; padding: 0;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||||
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
background: #1c1c1f;
|
||||||
color: #eee;
|
color: #e8e8ea;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
.container { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
|
.container { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 38px;
|
font-size: 38px;
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
background: linear-gradient(135deg, #f72585 0%, #b5179e 100%);
|
color: #fff;
|
||||||
-webkit-background-clip: text;
|
font-weight: 700;
|
||||||
background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
}
|
}
|
||||||
.subtitle { color: #aaa; margin-bottom: 32px; font-size: 16px; }
|
.subtitle { color: #999; margin-bottom: 32px; font-size: 16px; }
|
||||||
|
|
||||||
.back-link {
|
.back-link {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
color: #f72585;
|
color: #60a5fa;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
.back-link:hover { text-decoration: underline; }
|
.back-link:hover { text-decoration: underline; }
|
||||||
|
|
||||||
.category {
|
.category {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: #26262a;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid #353539;
|
||||||
border-radius: 12px;
|
border-radius: 12px;
|
||||||
padding: 20px 24px;
|
padding: 20px 24px;
|
||||||
margin-bottom: 16px;
|
margin-bottom: 16px;
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
}
|
}
|
||||||
.category h2 {
|
.category h2 {
|
||||||
margin: 0 0 16px 0;
|
margin: 0 0 16px 0;
|
||||||
@@ -48,13 +46,17 @@
|
|||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
gap: 8px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.category h2 .icon {
|
||||||
|
font-size: 28px;
|
||||||
|
font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", emoji;
|
||||||
}
|
}
|
||||||
.category h2 .icon { font-size: 28px; }
|
|
||||||
|
|
||||||
.checklist { list-style: none; padding: 0; margin: 0; }
|
.checklist { list-style: none; padding: 0; margin: 0; }
|
||||||
.checklist li {
|
.checklist li {
|
||||||
padding: 8px 0;
|
padding: 8px 0;
|
||||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
border-bottom: 1px solid #2a2a2d;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
@@ -65,16 +67,17 @@
|
|||||||
appearance: none;
|
appearance: none;
|
||||||
width: 18px;
|
width: 18px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
border: 2px solid #f72585;
|
border: 2px solid #3b82f6;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
margin-top: 2px;
|
margin-top: 2px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
background: transparent;
|
||||||
}
|
}
|
||||||
.checklist input[type="checkbox"]:checked {
|
.checklist input[type="checkbox"]:checked {
|
||||||
background: #f72585;
|
background: #3b82f6;
|
||||||
border-color: #f72585;
|
border-color: #3b82f6;
|
||||||
}
|
}
|
||||||
.checklist input[type="checkbox"]:checked::after {
|
.checklist input[type="checkbox"]:checked::after {
|
||||||
content: "✓";
|
content: "✓";
|
||||||
@@ -97,7 +100,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.progress-bar {
|
.progress-bar {
|
||||||
background: rgba(255, 255, 255, 0.1);
|
background: #2a2a2d;
|
||||||
height: 8px;
|
height: 8px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@@ -105,7 +108,7 @@
|
|||||||
}
|
}
|
||||||
.progress-bar .fill {
|
.progress-bar .fill {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
background: linear-gradient(90deg, #f72585, #b5179e);
|
background: #3b82f6;
|
||||||
width: 0%;
|
width: 0%;
|
||||||
transition: width 0.3s ease;
|
transition: width 0.3s ease;
|
||||||
}
|
}
|
||||||
@@ -224,7 +227,6 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// Checkbox-Persistenz via localStorage
|
|
||||||
const STORAGE_KEY = 'jga-packliste-checked';
|
const STORAGE_KEY = 'jga-packliste-checked';
|
||||||
let checked = JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]');
|
let checked = JSON.parse(localStorage.getItem(STORAGE_KEY) || '[]');
|
||||||
|
|
||||||
@@ -232,7 +234,6 @@
|
|||||||
const progressText = document.getElementById('progress-text');
|
const progressText = document.getElementById('progress-text');
|
||||||
const progressFill = document.getElementById('progress-fill');
|
const progressFill = document.getElementById('progress-fill');
|
||||||
|
|
||||||
// Initial state
|
|
||||||
checkboxes.forEach((cb, i) => {
|
checkboxes.forEach((cb, i) => {
|
||||||
if (checked[i]) {
|
if (checked[i]) {
|
||||||
cb.checked = true;
|
cb.checked = true;
|
||||||
@@ -247,7 +248,6 @@
|
|||||||
const pct = (done / total * 100).toFixed(0);
|
const pct = (done / total * 100).toFixed(0);
|
||||||
progressFill.style.width = pct + '%';
|
progressFill.style.width = pct + '%';
|
||||||
progressText.textContent = `${done} von ${total} erledigt (${pct}%)`;
|
progressText.textContent = `${done} von ${total} erledigt (${pct}%)`;
|
||||||
|
|
||||||
checked = Array.from(checkboxes).map(cb => cb.checked);
|
checked = Array.from(checkboxes).map(cb => cb.checked);
|
||||||
localStorage.setItem(STORAGE_KEY, JSON.stringify(checked));
|
localStorage.setItem(STORAGE_KEY, JSON.stringify(checked));
|
||||||
}
|
}
|
||||||
|
|||||||
+42
-28
@@ -4,30 +4,29 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Prag Wetter 25.–26. Juli 2026</title>
|
<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>
|
<style>
|
||||||
* { box-sizing: border-box; }
|
* { box-sizing: border-box; }
|
||||||
html, body {
|
html, body {
|
||||||
margin: 0; padding: 0;
|
margin: 0; padding: 0;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
||||||
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
background: #1c1c1f;
|
||||||
color: #eee;
|
color: #e8e8ea;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
.container { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
|
.container { max-width: 900px; margin: 0 auto; padding: 40px 24px; }
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 38px;
|
font-size: 38px;
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
|
color: #fff;
|
||||||
-webkit-background-clip: text;
|
font-weight: 700;
|
||||||
background-clip: text;
|
|
||||||
-webkit-text-fill-color: transparent;
|
|
||||||
}
|
}
|
||||||
.subtitle { color: #aaa; margin-bottom: 32px; font-size: 16px; }
|
.subtitle { color: #999; margin-bottom: 32px; font-size: 16px; }
|
||||||
|
|
||||||
.back-link {
|
.back-link {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
margin-bottom: 24px;
|
margin-bottom: 24px;
|
||||||
color: #4cc9f0;
|
color: #60a5fa;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
@@ -41,11 +40,10 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.weather-card {
|
.weather-card {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: #26262a;
|
||||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
border: 1px solid #353539;
|
||||||
border-radius: 16px;
|
border-radius: 12px;
|
||||||
padding: 28px;
|
padding: 28px;
|
||||||
backdrop-filter: blur(10px);
|
|
||||||
}
|
}
|
||||||
.weather-card .day {
|
.weather-card .day {
|
||||||
font-size: 22px;
|
font-size: 22px;
|
||||||
@@ -64,7 +62,11 @@
|
|||||||
gap: 16px;
|
gap: 16px;
|
||||||
margin-bottom: 20px;
|
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 {
|
.weather-main .temp {
|
||||||
font-size: 48px;
|
font-size: 48px;
|
||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
@@ -87,16 +89,26 @@
|
|||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
}
|
}
|
||||||
.weather-details .detail {
|
.weather-details .detail {
|
||||||
background: rgba(255, 255, 255, 0.05);
|
background: #2d2d31;
|
||||||
padding: 10px 12px;
|
padding: 10px 12px;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
}
|
}
|
||||||
.weather-details .label { color: #888; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
|
.weather-details .label {
|
||||||
.weather-details .value { color: #fff; font-size: 16px; font-weight: 600; margin-top: 2px; }
|
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 {
|
.tip {
|
||||||
background: rgba(76, 201, 240, 0.1);
|
background: #26262a;
|
||||||
border-left: 3px solid #4cc9f0;
|
border-left: 3px solid #3b82f6;
|
||||||
padding: 16px 20px;
|
padding: 16px 20px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
@@ -105,8 +117,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.note {
|
.note {
|
||||||
background: rgba(255, 193, 7, 0.1);
|
background: #26262a;
|
||||||
border-left: 3px solid #ffc107;
|
border-left: 3px solid #6b7280;
|
||||||
padding: 16px 20px;
|
padding: 16px 20px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
margin: 16px 0;
|
margin: 16px 0;
|
||||||
@@ -114,18 +126,19 @@
|
|||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a { color: #60a5fa; }
|
||||||
|
|
||||||
.link-card {
|
.link-card {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 12px 24px;
|
padding: 12px 24px;
|
||||||
background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
|
background: #3b82f6;
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border-radius: 8px;
|
border-radius: 6px;
|
||||||
font-weight: 600;
|
font-weight: 500;
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
transition: transform 0.2s;
|
|
||||||
}
|
}
|
||||||
.link-card:hover { transform: scale(1.02); }
|
.link-card:hover { background: #2563eb; }
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
@@ -138,9 +151,10 @@
|
|||||||
|
|
||||||
<div class="note">
|
<div class="note">
|
||||||
ℹ️ <strong>Hinweis:</strong> Das sind historische Mittelwerte für Ende Juli in Prag.
|
ℹ️ <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>,
|
Aktuelle Vorhersage gibt's 1–2 Wochen vorher auf
|
||||||
<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.wetter.com/deutschland/tschechien/prag/ CZPR0001.html" target="_blank">wetter.com</a>,
|
||||||
<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>.
|
<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>
|
||||||
|
|
||||||
<div class="weather-cards">
|
<div class="weather-cards">
|
||||||
|
|||||||
Reference in New Issue
Block a user