PANEL (links): - 240px breit (war 200px) - Checkboxen 16x16px (war 12x12) - Dots 10px (war 8px) - Layer-Namen 13px (war 11px) - Counts 12px (war 10px) - Mehr Padding pro Toggle-Zeile INFOBOX (bei Klick): - Links neben dem Panel platziert (254px vom Rand) - 420px breit, max 60vh hoch, scrollbar - Kollidiert nicht mit Panel oder Sidebar - Groesserer Titel (14px), mehr Padding PUNKTE AUF DEM GLOBUS: - Flugzeuge: 3/4/5px (war 2/2.5/3) - Schiffe: 3/4/5px (war 2/2.5/3) - Militaer: 6px (war 4) - Katastrophen: 10px (war 8) - Erdbeben: 6-15px (war 4-10) - GDELT: 7px (war 5) - ISS: 14px (war 10) - Cluster: +30% groesser HEADER + FOOTER: - Header 48px (war 44px) - Footer 32px (war 28px) - Titel 15px, Stats 12px - Lage-Select + Suche groesser
589 Zeilen
16 KiB
CSS
589 Zeilen
16 KiB
CSS
/* AegisSight Globe — Taktisches Dark Theme */
|
|
:root {
|
|
--bg-primary: #0b1121;
|
|
--bg-panel: rgba(11, 17, 33, 0.92);
|
|
--border: rgba(0, 255, 136, 0.15);
|
|
--accent: #00ff88;
|
|
--accent-dim: rgba(0, 255, 136, 0.4);
|
|
--text: #e8eaf0;
|
|
--text-dim: rgba(255,255,255,0.5);
|
|
--font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
|
|
}
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
html, body { height: 100%; overflow: hidden; background: var(--bg-primary); color: var(--text); font-family: var(--font-mono); }
|
|
|
|
/* === Cesium Container === */
|
|
#cesiumContainer { position: absolute; inset: 0; z-index: 1; }
|
|
/* Cesium UI ausblenden */
|
|
.cesium-viewer-toolbar,
|
|
.cesium-viewer-animationContainer,
|
|
.cesium-viewer-timelineContainer,
|
|
.cesium-viewer-fullscreenContainer,
|
|
|
|
.cesium-viewer-geocoderContainer,
|
|
.cesium-viewer-bottom { display: none !important; }
|
|
.cesium-credit-logoContainer { opacity: 0.3; }
|
|
|
|
/* === Header === */
|
|
#header {
|
|
position: fixed; top: 0; left: 0; right: 0; height: 48px; z-index: 100;
|
|
display: flex; align-items: center; padding: 0 16px; gap: 16px;
|
|
background: var(--bg-panel); border-bottom: 1px solid var(--border);
|
|
backdrop-filter: blur(12px);
|
|
}
|
|
.header-brand { display: flex; align-items: center; gap: 8px; }
|
|
.header-title { font-size: 15px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); }
|
|
.header-stats { text-align: center; font-size: 11px; color: var(--text-dim); letter-spacing: 1px; }
|
|
.header-actions { display: flex; gap: 8px; }
|
|
.header-btn {
|
|
background: none; border: 1px solid var(--border); border-radius: 4px;
|
|
color: var(--text); padding: 4px 8px; cursor: pointer; transition: all 0.2s;
|
|
}
|
|
.header-btn:hover { border-color: var(--accent); color: var(--accent); }
|
|
|
|
/* === Layer Panel === */
|
|
.layer-panel {
|
|
position: fixed; top: 56px; left: 12px; z-index: 100;
|
|
width: 240px; background: var(--bg-panel); border: 1px solid var(--border);
|
|
border-radius: 8px; padding: 12px; backdrop-filter: blur(12px);
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.4);
|
|
}
|
|
.panel-title {
|
|
font-size: 11px; font-weight: 700; letter-spacing: 3px; color: var(--accent);
|
|
margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border);
|
|
}
|
|
.panel-section { display: flex; flex-direction: column; gap: 4px; }
|
|
.panel-divider { height: 1px; background: var(--border); margin: 8px 0; }
|
|
|
|
.layer-toggle {
|
|
display: flex; align-items: center; gap: 8px; padding: 6px 8px;
|
|
border-radius: 4px; cursor: pointer; transition: background 0.15s;
|
|
}
|
|
.layer-toggle:hover { background: rgba(255,255,255,0.04); }
|
|
.layer-toggle input[type="checkbox"] {
|
|
accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0;
|
|
}
|
|
.layer-dot {
|
|
width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
|
|
}
|
|
.dot-flights { background: var(--accent); }
|
|
.dot-ships { background: #4499ff; }
|
|
.dot-quakes { background: #ff4444; }
|
|
.dot-gdelt { background: #ff8800; }
|
|
.dot-daynight { background: #8866cc; }
|
|
.dot-labels { background: #aaaaaa; }
|
|
.layer-name { font-size: 13px; color: var(--text); flex: 1; }
|
|
.layer-count { font-size: 12px; color: var(--text-dim); }
|
|
|
|
.panel-coords {
|
|
font-size: 12px; color: var(--accent); letter-spacing: 0.5px;
|
|
padding: 8px 0 0; text-align: center;
|
|
}
|
|
|
|
/* === Bottom Bar === */
|
|
#bottom-bar {
|
|
position: fixed; bottom: 0; left: 0; right: 0; height: 32px; z-index: 100;
|
|
display: flex; align-items: center; justify-content: center;
|
|
background: var(--bg-panel); border-top: 1px solid var(--border);
|
|
backdrop-filter: blur(8px);
|
|
}
|
|
.bottom-stats { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }
|
|
|
|
/* === Cesium InfoBox Override === */
|
|
.cesium-infoBox { background: var(--bg-panel) !important; border: 1px solid var(--border) !important; }
|
|
.cesium-infoBox-title { color: var(--accent) !important; font-family: var(--font-mono) !important; }
|
|
|
|
/* === InfoBox (Entity-Details bei Klick) === */
|
|
.cesium-infoBox {
|
|
background: var(--bg-panel) !important;
|
|
border: 1px solid var(--border) !important;
|
|
border-radius: 8px !important;
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
|
|
}
|
|
.cesium-infoBox-title {
|
|
color: var(--accent) !important;
|
|
font-family: var(--font-mono) !important;
|
|
font-size: 14px !important;
|
|
padding: 8px 12px !important;
|
|
background: rgba(0,255,136,0.08) !important;
|
|
}
|
|
.cesium-infoBox-iframe {
|
|
background: var(--bg-primary) !important;
|
|
}
|
|
.cesium-selection-wrapper {
|
|
border-color: var(--accent) !important;
|
|
}
|
|
|
|
|
|
/* === Loading Indicator === */
|
|
.layer-loading {
|
|
display: none;
|
|
height: 2px;
|
|
background: var(--accent);
|
|
position: relative;
|
|
overflow: hidden;
|
|
border-radius: 1px;
|
|
margin: 4px 0 0;
|
|
}
|
|
.layer-loading.active {
|
|
display: block;
|
|
}
|
|
.layer-loading::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: -40%;
|
|
width: 40%;
|
|
height: 100%;
|
|
background: linear-gradient(90deg, transparent, #00ff88, transparent);
|
|
animation: layer-loading-slide 1s ease-in-out infinite;
|
|
}
|
|
@keyframes layer-loading-slide {
|
|
0% { left: -40%; }
|
|
100% { left: 100%; }
|
|
}
|
|
.layer-status {
|
|
font-size: 9px;
|
|
color: var(--text-dim);
|
|
margin-top: 2px;
|
|
display: none;
|
|
}
|
|
.layer-status.active {
|
|
display: block;
|
|
}
|
|
|
|
|
|
/* === Neue Layer-Dots === */
|
|
.dot-monitor { background: #ff2222; box-shadow: 0 0 4px rgba(255,34,34,0.5); }
|
|
.dot-satellites { background: #ff4444; }
|
|
.dot-disasters { background: #ff8800; }
|
|
|
|
/* === Visual Mode Buttons === */
|
|
.vmode-btn {
|
|
padding: 6px 10px;
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid var(--border);
|
|
border-radius: 3px;
|
|
color: var(--text-dim);
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
.vmode-btn:hover { border-color: var(--accent); color: var(--text); }
|
|
.vmode-btn.active { background: rgba(0,255,136,0.15); border-color: var(--accent); color: var(--accent); }
|
|
|
|
/* === Visual Overlay (CRT Scanlines) === */
|
|
.visual-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 50;
|
|
pointer-events: none;
|
|
}
|
|
.vmode-crt-overlay {
|
|
background: repeating-linear-gradient(
|
|
0deg,
|
|
transparent,
|
|
transparent 2px,
|
|
rgba(0, 0, 0, 0.08) 2px,
|
|
rgba(0, 0, 0, 0.08) 4px
|
|
);
|
|
box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
/* === Night Vision Mode === */
|
|
.vmode-nvg {
|
|
filter: saturate(0) brightness(1.2) contrast(1.1);
|
|
}
|
|
.vmode-nvg .cesium-viewer { mix-blend-mode: normal; }
|
|
.vmode-nvg::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: rgba(0, 255, 0, 0.08);
|
|
pointer-events: none;
|
|
z-index: 40;
|
|
mix-blend-mode: multiply;
|
|
}
|
|
|
|
/* === FLIR Thermal Mode === */
|
|
.vmode-flir {
|
|
filter: saturate(0) invert(1) contrast(1.3) brightness(0.9);
|
|
}
|
|
.vmode-flir::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(135deg, rgba(255,100,0,0.05), rgba(255,0,100,0.05));
|
|
pointer-events: none;
|
|
z-index: 40;
|
|
}
|
|
|
|
/* === CRT Mode === */
|
|
.vmode-crt {
|
|
filter: contrast(1.1) brightness(0.95);
|
|
}
|
|
.vmode-crt::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.4) 100%);
|
|
pointer-events: none;
|
|
z-index: 40;
|
|
}
|
|
|
|
/* === Tooltip-Styling === */
|
|
.layer-toggle[title]:hover::after,
|
|
.layer-name[title]:hover::after,
|
|
.vmode-btn[title]:hover::after {
|
|
content: attr(title);
|
|
position: absolute;
|
|
left: 110%;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
background: rgba(11, 17, 33, 0.95);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
padding: 6px 10px;
|
|
font-size: 10px;
|
|
color: var(--text);
|
|
white-space: nowrap;
|
|
z-index: 200;
|
|
pointer-events: none;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
|
|
max-width: 280px;
|
|
white-space: normal;
|
|
line-height: 1.4;
|
|
}
|
|
.layer-toggle, .layer-name, .vmode-btn { position: relative; }
|
|
|
|
|
|
/* === Rechte Sidebar === */
|
|
.sidebar-right {
|
|
position: fixed;
|
|
top: 48px;
|
|
right: 0;
|
|
bottom: 32px;
|
|
width: 280px;
|
|
z-index: 100;
|
|
display: flex;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
.sidebar-right.collapsed {
|
|
transform: translateX(280px);
|
|
}
|
|
.sidebar-right.collapsed .sidebar-toggle {
|
|
transform: translateX(-32px);
|
|
}
|
|
.sidebar-toggle {
|
|
position: absolute;
|
|
left: -28px;
|
|
top: 12px;
|
|
width: 28px;
|
|
height: 36px;
|
|
background: var(--bg-panel);
|
|
border: 1px solid var(--border);
|
|
border-right: none;
|
|
border-radius: 6px 0 0 6px;
|
|
color: var(--text);
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.2s;
|
|
z-index: 101;
|
|
}
|
|
.sidebar-toggle:hover { color: var(--accent); border-color: var(--accent); }
|
|
|
|
.sidebar-inner {
|
|
flex: 1;
|
|
background: var(--bg-panel);
|
|
border-left: 1px solid var(--border);
|
|
backdrop-filter: blur(12px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
.sidebar-search-wrap {
|
|
padding: 10px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
.sidebar-search {
|
|
width: 100%;
|
|
padding: 6px 10px;
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
color: var(--text);
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
outline: none;
|
|
}
|
|
.sidebar-search:focus { border-color: var(--accent); }
|
|
.sidebar-search::placeholder { color: var(--text-dim); }
|
|
|
|
.sidebar-content {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
padding: 4px 0;
|
|
}
|
|
.sidebar-content::-webkit-scrollbar { width: 4px; }
|
|
.sidebar-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
|
|
|
|
/* Sections */
|
|
.sb-section { border-bottom: 1px solid rgba(255,255,255,0.04); }
|
|
.sb-header {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
}
|
|
.sb-header:hover { background: rgba(255,255,255,0.04); }
|
|
.sb-header-count { cursor: default; }
|
|
.sb-chevron {
|
|
font-size: 10px;
|
|
color: var(--text-dim);
|
|
transition: transform 0.2s;
|
|
width: 12px;
|
|
text-align: center;
|
|
}
|
|
.sb-title {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
letter-spacing: 1px;
|
|
text-transform: uppercase;
|
|
color: var(--text);
|
|
flex: 1;
|
|
}
|
|
.sb-badge {
|
|
font-size: 11px;
|
|
color: var(--accent);
|
|
background: rgba(0,255,136,0.1);
|
|
padding: 1px 6px;
|
|
border-radius: 8px;
|
|
font-family: var(--font-mono);
|
|
}
|
|
|
|
/* Items */
|
|
.sb-list { padding: 0 4px 4px; }
|
|
.sb-item {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 6px;
|
|
padding: 4px 8px;
|
|
border-radius: 3px;
|
|
cursor: pointer;
|
|
transition: background 0.15s;
|
|
}
|
|
.sb-item:hover { background: rgba(0,255,136,0.06); }
|
|
.sb-dot {
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
margin-top: 4px;
|
|
}
|
|
.sb-item-text { min-width: 0; flex: 1; }
|
|
.sb-item-name {
|
|
font-size: 13px;
|
|
color: var(--text);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.sb-item-sub {
|
|
font-size: 11px;
|
|
color: var(--text-dim);
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.sb-more {
|
|
font-size: 9px;
|
|
color: var(--text-dim);
|
|
padding: 4px 8px;
|
|
text-align: center;
|
|
}
|
|
.sb-empty {
|
|
padding: 20px;
|
|
text-align: center;
|
|
font-size: 11px;
|
|
color: var(--text-dim);
|
|
}
|
|
|
|
|
|
/* === Lage-Selector === */
|
|
.header-lage { display: flex; align-items: center; }
|
|
.lage-select {
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
color: var(--accent);
|
|
font-family: var(--font-mono);
|
|
font-size: 13px;
|
|
padding: 6px 10px;
|
|
cursor: pointer;
|
|
max-width: 300px;
|
|
outline: none;
|
|
}
|
|
.lage-select:hover { border-color: var(--accent); }
|
|
.lage-select option {
|
|
background: var(--bg-primary);
|
|
color: var(--text);
|
|
}
|
|
|
|
/* === InfoBox: Links neben dem Layer-Panel === */
|
|
.cesium-viewer-infoBoxContainer {
|
|
position: absolute !important;
|
|
top: 52px !important;
|
|
left: 254px !important;
|
|
right: auto !important;
|
|
transform: none !important;
|
|
max-width: 420px !important;
|
|
width: 420px !important;
|
|
max-height: 60vh !important;
|
|
z-index: 150 !important;
|
|
}
|
|
.cesium-infoBox {
|
|
max-height: 60vh !important;
|
|
overflow-y: auto !important;
|
|
border-radius: 8px !important;
|
|
box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
|
|
}
|
|
|
|
|
|
/* === Wetter Dot === */
|
|
.dot-weather { background: #44bbff; }
|
|
.dot-crosshairs { background: #ffffff; }
|
|
|
|
/* === Search Bar === */
|
|
.header-search { position: relative; }
|
|
.globe-search {
|
|
width: 200px;
|
|
padding: 6px 12px;
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
color: var(--text);
|
|
font-family: var(--font-mono);
|
|
font-size: 11px;
|
|
outline: none;
|
|
transition: width 0.3s, border-color 0.2s;
|
|
}
|
|
.globe-search:focus { width: 300px; border-color: var(--accent); }
|
|
.globe-search::placeholder { color: var(--text-dim); }
|
|
.search-results {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
right: 0;
|
|
background: var(--bg-panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 0 0 6px 6px;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
z-index: 200;
|
|
}
|
|
.search-item {
|
|
padding: 6px 10px;
|
|
cursor: pointer;
|
|
font-size: 11px;
|
|
color: var(--text);
|
|
transition: background 0.15s;
|
|
}
|
|
.search-item:hover { background: rgba(0,255,136,0.08); }
|
|
.search-empty { padding: 8px 10px; font-size: 11px; color: var(--text-dim); }
|
|
|
|
/* === City Quick-Links === */
|
|
.city-links {
|
|
position: fixed;
|
|
top: 48px;
|
|
left: 254px;
|
|
right: 290px;
|
|
z-index: 90;
|
|
display: flex;
|
|
gap: 4px;
|
|
padding: 4px 8px;
|
|
overflow-x: auto;
|
|
scrollbar-width: none;
|
|
}
|
|
.city-links::-webkit-scrollbar { display: none; }
|
|
.city-btn {
|
|
padding: 2px 8px;
|
|
background: rgba(255,255,255,0.04);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
border-radius: 10px;
|
|
color: var(--text-dim);
|
|
font-family: var(--font-mono);
|
|
font-size: 9px;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
transition: all 0.2s;
|
|
}
|
|
.city-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(0,255,136,0.06); }
|
|
|
|
/* === Crosshairs Overlay === */
|
|
.crosshairs-overlay {
|
|
position: fixed;
|
|
inset: 0;
|
|
z-index: 60;
|
|
pointer-events: none;
|
|
}
|
|
.ch-h, .ch-v {
|
|
position: absolute;
|
|
background: rgba(0, 255, 136, 0.15);
|
|
}
|
|
.ch-h { left: 0; right: 0; top: 50%; height: 1px; }
|
|
.ch-v { top: 0; bottom: 0; left: 50%; width: 1px; }
|
|
.ch-center {
|
|
position: absolute;
|
|
top: 50%; left: 50%;
|
|
width: 8px; height: 8px;
|
|
transform: translate(-50%, -50%);
|
|
border: 1px solid rgba(0, 255, 136, 0.5);
|
|
border-radius: 50%;
|
|
}
|
|
.ch-ring {
|
|
position: absolute;
|
|
top: 50%; left: 50%;
|
|
border: 1px solid rgba(0, 255, 136, 0.08);
|
|
border-radius: 50%;
|
|
}
|
|
.ch-ring-1 { width: 200px; height: 200px; transform: translate(-50%, -50%); }
|
|
.ch-ring-2 { width: 400px; height: 400px; transform: translate(-50%, -50%); }
|
|
.ch-ring-3 { width: 600px; height: 600px; transform: translate(-50%, -50%); }
|
|
|
|
|
|
/* === Imagery Selector === */
|
|
.imagery-select {
|
|
width: 100%;
|
|
padding: 6px 8px;
|
|
background: rgba(255,255,255,0.05);
|
|
border: 1px solid var(--border);
|
|
border-radius: 4px;
|
|
color: var(--text);
|
|
font-family: var(--font-mono);
|
|
font-size: 12px;
|
|
cursor: pointer;
|
|
outline: none;
|
|
}
|
|
.imagery-select:hover { border-color: var(--accent); }
|
|
.imagery-select option { background: var(--bg-primary); color: var(--text); }
|
|
|
|
.dot-military { background: #ff2222; box-shadow: 0 0 4px rgba(255,34,34,0.5); }
|
|
.dot-cables { background: #00ccff; }
|
|
.dot-infra { background: #ffdd00; }
|
|
.dot-iss { background: #ff4444; box-shadow: 0 0 6px rgba(255,68,68,0.6); }
|
|
|
|
.dot-terminator { background: #ff8800; }
|
|
.dot-timezones { background: #8888ff; }
|
|
|
|
/* === Ship Filters === */
|
|
.ship-filters {
|
|
padding: 4px 12px 6px;
|
|
border-top: 1px solid rgba(255,255,255,0.04);
|
|
}
|