Website-Update: Lagebild-Sektion, Impressum/Datenschutz-Updates, Video-Assets via LFS
- Lagebild-Dashboard mit Snapshot-Daten hinzugefuegt - Impressum und Datenschutz (DE/EN) aktualisiert - Uebersetzungen in translations.js erweitert - Video-Dateien als LFS-Objekte aktualisiert Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Dieser Commit ist enthalten in:
271
lagebild/lagebild.css
Normale Datei
271
lagebild/lagebild.css
Normale Datei
@@ -0,0 +1,271 @@
|
||||
/* ==========================================================================
|
||||
AegisSight Lagebild Page v2
|
||||
========================================================================== */
|
||||
.lagebild-page { background: #f4f6f9; min-height: 100vh; }
|
||||
|
||||
/* Hero */
|
||||
.lagebild-hero {
|
||||
background: linear-gradient(135deg, #0a0f1c 0%, #1a2744 50%, #0f2035 100%);
|
||||
padding: 150px 20px 70px;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.hero-bg-pattern {
|
||||
position: absolute; inset: 0;
|
||||
background: radial-gradient(circle at 20% 80%, rgba(15,114,181,0.15) 0%, transparent 50%),
|
||||
radial-gradient(circle at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 50%);
|
||||
pointer-events: none;
|
||||
}
|
||||
.lagebild-hero .container { position: relative; z-index: 1; }
|
||||
.hero-badge {
|
||||
display: inline-flex; align-items: center; gap: 8px;
|
||||
background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3);
|
||||
padding: 6px 16px; border-radius: 20px;
|
||||
font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; color: #4ade80;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
.badge-dot {
|
||||
width: 8px; height: 8px; background: #22c55e; border-radius: 50%;
|
||||
animation: pulse-dot 2s infinite;
|
||||
}
|
||||
@keyframes pulse-dot {
|
||||
0%,100% { opacity:1; transform:scale(1); }
|
||||
50% { opacity:0.5; transform:scale(0.8); }
|
||||
}
|
||||
.lagebild-hero h1 {
|
||||
font-family: 'Bebas Neue', sans-serif;
|
||||
font-size: 3.5rem; letter-spacing: 5px; color: #fff; margin: 0 0 0.3rem; line-height: 1;
|
||||
}
|
||||
.hero-incident-title {
|
||||
font-size: 1.5rem; font-weight: 300; color: rgba(255,255,255,0.9); margin: 0 0 1.5rem;
|
||||
}
|
||||
.hero-meta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
|
||||
.meta-badge {
|
||||
display: inline-flex; align-items: center; gap: 8px;
|
||||
background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
|
||||
padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.85);
|
||||
}
|
||||
.meta-badge svg { opacity: 0.7; flex-shrink: 0; }
|
||||
|
||||
/* Control Bar (Snapshot + Tabs) */
|
||||
.control-bar {
|
||||
background: #fff; border-bottom: 1px solid #e5e7eb;
|
||||
padding: 0 20px; position: sticky; top: 70px; z-index: 50;
|
||||
}
|
||||
.control-bar .container {
|
||||
display: flex; justify-content: space-between; align-items: center;
|
||||
max-width: 1000px; margin: 0 auto; flex-wrap: wrap; gap: 8px;
|
||||
}
|
||||
.snapshot-selector { display: flex; align-items: center; gap: 10px; padding: 10px 0; }
|
||||
.snapshot-selector label { font-size: 0.9rem; color: #666; font-weight: 500; }
|
||||
.snapshot-selector select {
|
||||
padding: 6px 12px; border-radius: 6px; border: 1px solid #d1d5db;
|
||||
font-size: 0.9rem; background: #fff; cursor: pointer; color: #333;
|
||||
max-width: 350px;
|
||||
}
|
||||
|
||||
/* Tab Navigation */
|
||||
.tab-nav { display: flex; gap: 0; }
|
||||
.tab-btn {
|
||||
padding: 12px 20px; border: none; background: transparent; cursor: pointer;
|
||||
font-size: 0.9rem; font-weight: 600; color: #888; border-bottom: 3px solid transparent;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
.tab-btn:hover { color: #333; }
|
||||
.tab-btn.active { color: #0f72b5; border-bottom-color: #0f72b5; }
|
||||
|
||||
/* Tab Panels */
|
||||
.tab-panel { display: none; }
|
||||
.tab-panel.active { display: block; }
|
||||
|
||||
/* Main Content */
|
||||
.lagebild-main { padding: 2rem 20px 4rem; }
|
||||
.lagebild-main .container { max-width: 1000px; margin: 0 auto; }
|
||||
|
||||
/* Content Cards */
|
||||
.content-card {
|
||||
background: #fff; border-radius: 16px;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
|
||||
margin-bottom: 1.5rem; overflow: hidden;
|
||||
}
|
||||
.card-header { padding: 24px 32px 0; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
|
||||
.card-header h2 { font-size: 1.3rem; font-weight: 700; color: #1a1a2e; margin: 0; }
|
||||
.card-timestamp { font-size: 0.85rem; color: #888; font-weight: 500; }
|
||||
.card-description { font-size: 0.85rem; color: #888; margin: 4px 0 0; width: 100%; }
|
||||
.card-body { padding: 20px 32px 28px; }
|
||||
.card-footer { padding: 0 32px 28px; border-top: 1px solid #f0f0f0; padding-top: 20px; margin: 0 32px; }
|
||||
|
||||
/* Lagebild Summary */
|
||||
#summary-content { line-height: 1.85; font-size: 1.02rem; color: #333; }
|
||||
#summary-content h2 {
|
||||
font-size: 1.15rem; font-weight: 700; color: #0f72b5;
|
||||
margin: 1.8rem 0 0.8rem; padding-bottom: 0.4rem; border-bottom: 2px solid #e5e7eb;
|
||||
}
|
||||
#summary-content h2:first-child { margin-top: 0; }
|
||||
#summary-content h3 { font-size: 1.05rem; font-weight: 600; color: #1a1a2e; margin: 1.5rem 0 0.6rem; }
|
||||
#summary-content p { margin: 0 0 1rem; }
|
||||
|
||||
/* Citations */
|
||||
.citation-ref {
|
||||
color: #0f72b5; font-weight: 700; cursor: pointer; text-decoration: none;
|
||||
font-size: 0.78em; vertical-align: super; line-height: 1; padding: 0 1px; transition: color 0.2s;
|
||||
}
|
||||
.citation-ref:hover { color: #d4af37; text-decoration: underline; }
|
||||
|
||||
/* Sources List */
|
||||
.sources-section h3 { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin: 0 0 12px; }
|
||||
.section-subtitle { font-size: 1.1rem; font-weight: 700; color: #1a1a2e; margin: 2rem 0 12px; padding-top: 1.5rem; border-top: 1px solid #f0f0f0; }
|
||||
.sources-list { list-style: none; padding: 0; margin: 0; counter-reset: src; }
|
||||
.sources-list li {
|
||||
counter-increment: src; padding: 10px 0; border-bottom: 1px solid #f0f0f0;
|
||||
font-size: 0.92rem; display: flex; align-items: baseline; gap: 10px;
|
||||
}
|
||||
.sources-list li:last-child { border-bottom: none; }
|
||||
.sources-list li::before { content: "[" counter(src) "]"; color: #0f72b5; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
|
||||
.sources-list a { color: #0f72b5; text-decoration: none; word-break: break-all; }
|
||||
.sources-list a:hover { text-decoration: underline; }
|
||||
.source-name { font-weight: 600; color: #333; }
|
||||
|
||||
/* Inline sources in Lagebild tab footer */
|
||||
.inline-sources-list { list-style: none; padding: 0; margin: 0; }
|
||||
.inline-sources-list li { padding: 6px 0; font-size: 0.85rem; color: #666; display: flex; gap: 8px; align-items: baseline; }
|
||||
.inline-sources-list .src-nr { color: #0f72b5; font-weight: 700; min-width: 24px; }
|
||||
.inline-sources-list a { color: #0f72b5; text-decoration: none; }
|
||||
.inline-sources-list a:hover { text-decoration: underline; }
|
||||
|
||||
/* Article Cards */
|
||||
.article-card {
|
||||
display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid #f0f0f0;
|
||||
}
|
||||
.article-card:last-child { border-bottom: none; }
|
||||
.article-date { flex-shrink: 0; width: 60px; text-align: center; }
|
||||
.article-date .day { display: block; font-size: 1.3rem; font-weight: 700; color: #0f72b5; line-height: 1; }
|
||||
.article-date .month { display: block; font-size: 0.72rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
|
||||
.article-info { flex: 1; min-width: 0; }
|
||||
.article-headline { font-size: 0.95rem; font-weight: 600; color: #1a1a2e; margin: 0 0 6px; line-height: 1.4; }
|
||||
.article-headline a { color: inherit; text-decoration: none; }
|
||||
.article-headline a:hover { color: #0f72b5; }
|
||||
.article-meta { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: #888; flex-wrap: wrap; }
|
||||
.article-source { font-weight: 600; color: #555; }
|
||||
.article-lang { background: #f0f0f0; padding: 1px 6px; border-radius: 3px; font-size: 0.7rem; text-transform: uppercase; }
|
||||
|
||||
/* Fact Check Cards */
|
||||
.factcheck-card {
|
||||
background: #fafbfc; border-radius: 12px; padding: 20px; margin-bottom: 12px;
|
||||
border-left: 4px solid #d1d5db; transition: transform 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.factcheck-card:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
|
||||
.factcheck-card.highlight {
|
||||
background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
|
||||
border-left-color: #d4af37; box-shadow: 0 2px 12px rgba(212,175,55,0.15);
|
||||
}
|
||||
.factcheck-card[data-status="confirmed"], .factcheck-card[data-status="established"] { border-left-color: #22c55e; }
|
||||
.factcheck-card[data-status="unconfirmed"], .factcheck-card[data-status="unverified"] { border-left-color: #f59e0b; }
|
||||
.factcheck-card[data-status="contradicted"], .factcheck-card[data-status="disputed"] { border-left-color: #ef4444; }
|
||||
.factcheck-card[data-status="developing"] { border-left-color: #3b82f6; }
|
||||
.factcheck-card[data-status="false"] { border-left-color: #dc2626; }
|
||||
.factcheck-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
|
||||
.factcheck-sources { font-size: 0.8rem; color: #888; }
|
||||
.factcheck-claim { font-size: 0.95rem; color: #333; margin: 0 0 4px; line-height: 1.5; }
|
||||
.factcheck-evidence { font-size: 0.82rem; color: #666; margin: 8px 0 0; line-height: 1.5; }
|
||||
|
||||
/* Status Badges */
|
||||
.status-badge {
|
||||
display: inline-block; padding: 3px 10px; border-radius: 4px;
|
||||
font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
|
||||
}
|
||||
.status-badge.confirmed, .status-badge.established { background: rgba(34,197,94,0.12); color: #166534; }
|
||||
.status-badge.unconfirmed, .status-badge.unverified { background: rgba(245,158,11,0.12); color: #92400e; }
|
||||
.status-badge.contradicted, .status-badge.disputed { background: rgba(239,68,68,0.12); color: #991b1b; }
|
||||
.status-badge.developing { background: rgba(59,130,246,0.12); color: #1e40af; }
|
||||
.status-badge.false { background: rgba(220,38,38,0.12); color: #7f1d1d; }
|
||||
|
||||
/* Status Progression */
|
||||
.status-progression {
|
||||
display: flex; align-items: center; gap: 6px; margin-top: 10px;
|
||||
padding-top: 10px; border-top: 1px solid #e5e7eb; font-size: 0.78rem;
|
||||
}
|
||||
.progression-label { color: #888; font-weight: 500; margin-right: 4px; }
|
||||
.progression-arrow { color: #ccc; font-size: 1rem; }
|
||||
.progression-step { display: flex; align-items: center; gap: 4px; }
|
||||
.progression-time { color: #aaa; font-size: 0.7rem; }
|
||||
|
||||
/* CTA */
|
||||
.lagebild-cta { margin-top: 1rem; text-align: center; }
|
||||
.cta-content {
|
||||
background: linear-gradient(135deg, #0a0f1c 0%, #1a2744 100%);
|
||||
border-radius: 16px; padding: 48px 32px; color: #fff;
|
||||
}
|
||||
.cta-content h3 { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.8rem; }
|
||||
.cta-content p { font-size: 1rem; color: rgba(255,255,255,0.7); margin: 0 0 1.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
|
||||
.cta-button {
|
||||
display: inline-block; background: #d4af37; color: #0a0f1c; padding: 12px 32px;
|
||||
border-radius: 8px; font-weight: 700; text-decoration: none; font-size: 0.95rem;
|
||||
transition: background 0.2s, transform 0.2s;
|
||||
}
|
||||
.cta-button:hover { background: #e5c04b; transform: translateY(-2px); }
|
||||
|
||||
/* Loading Skeleton */
|
||||
.loading-skeleton { padding: 20px 0; }
|
||||
.skeleton-line {
|
||||
height: 16px;
|
||||
background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
|
||||
background-size: 200% 100%; animation: shimmer 1.5s infinite;
|
||||
border-radius: 4px; margin-bottom: 12px;
|
||||
}
|
||||
.skeleton-line.short { width: 60%; }
|
||||
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
|
||||
|
||||
/* Error */
|
||||
.lagebild-error { text-align: center; padding: 40px 20px; color: #888; }
|
||||
|
||||
/* Map */
|
||||
#map-container { background: #e5e7eb; }
|
||||
|
||||
/* Responsive */
|
||||
@media (max-width: 768px) {
|
||||
.lagebild-hero { padding: 120px 16px 50px; }
|
||||
.lagebild-hero h1 { font-size: 2.5rem; letter-spacing: 3px; }
|
||||
.hero-incident-title { font-size: 1.2rem; }
|
||||
.hero-meta { gap: 8px; }
|
||||
.meta-badge { font-size: 0.75rem; padding: 6px 10px; }
|
||||
.control-bar .container { flex-direction: column; align-items: stretch; }
|
||||
.tab-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
|
||||
.tab-btn { padding: 10px 14px; font-size: 0.82rem; white-space: nowrap; }
|
||||
.card-header { padding: 16px 20px 0; }
|
||||
.card-body { padding: 16px 20px 20px; }
|
||||
.card-footer { margin: 0 20px; padding: 16px 20px 20px; }
|
||||
.lagebild-main { padding: 1rem 12px 3rem; }
|
||||
.factcheck-header { flex-direction: column; align-items: flex-start; gap: 6px; }
|
||||
.article-card { flex-direction: column; gap: 8px; }
|
||||
.article-date { width: auto; text-align: left; display: flex; gap: 6px; align-items: baseline; }
|
||||
.article-date .day { font-size: 1rem; }
|
||||
#map-container { height: 350px !important; }
|
||||
}
|
||||
|
||||
/* Fact Check Statistics */
|
||||
.fc-stats {
|
||||
display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap;
|
||||
}
|
||||
.fc-stat {
|
||||
background: #f8f9fa; border-radius: 10px; padding: 14px 20px;
|
||||
text-align: center; min-width: 80px; border: 1px solid #e5e7eb;
|
||||
}
|
||||
.fc-stat.confirmed { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.2); }
|
||||
.fc-stat.unconfirmed { background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.2); }
|
||||
.fc-stat.contradicted { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.2); }
|
||||
.fc-stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: #1a1a2e; }
|
||||
.fc-stat.confirmed .fc-stat-num { color: #166534; }
|
||||
.fc-stat.unconfirmed .fc-stat-num { color: #92400e; }
|
||||
.fc-stat.contradicted .fc-stat-num { color: #991b1b; }
|
||||
.fc-stat-label { font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
|
||||
|
||||
/* Evidenz in Faktenchecks */
|
||||
.factcheck-evidence {
|
||||
font-size: 0.82rem; color: #555; margin: 10px 0 0; line-height: 1.6;
|
||||
padding: 10px 14px; background: rgba(0,0,0,0.02); border-radius: 8px;
|
||||
border: 1px solid #f0f0f0;
|
||||
}
|
||||
.factcheck-evidence a { word-break: break-all; }
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren