auto-sync: 2026-04-21 00:40:01

This commit is contained in:
Stream
2026-04-21 00:40:01 +03:00
parent 971d92414e
commit 21c629464a
3 changed files with 30 additions and 16 deletions

View File

@@ -7,7 +7,11 @@
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"/>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: monospace; background: #0d1117; color: #c9d1d9; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #0d1117; color: #c9d1d9; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 2000; background: #1a1d27; padding: 12px 24px; display: flex; gap: 24px; align-items: center; border-bottom: 1px solid #2a2d3a; }
nav a { color: #8b8fa8; text-decoration: none; font-size: 14px; }
nav a:hover, nav a.active { color: #fff; }
nav .brand { color: #fff; font-weight: 600; margin-right: 16px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
#map { width: 100vw; height: 100vh; }
#hud {
position: fixed; top: 10px; left: 10px; z-index: 1000;
@@ -35,7 +39,14 @@
</style>
</head>
<body>
<div id="hud">
<nav>
<span class="brand">✈ FR24</span>
<a href="/" class="active">Карта</a>
<a href="/schedule">Расписание</a>
<a href="/monitoring">Мониторинг</a>
<a href="/data-sources">Источники</a>
</nav>
<div id="hud" style="top: 56px;">
<h2>✈ FR24 Live</h2>
<div class="stat">Aircraft: <span id="ac-count"></span></div>
<div class="stat">Updated: <span id="last-update"></span></div>

View File

@@ -10,13 +10,13 @@
body {
background: #0d1117;
color: #c9d1d9;
font-family: 'Segoe UI', system-ui, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 14px;
min-height: 100vh;
padding: 24px;
}
nav { background: #1a1d27; padding: 12px 24px; display: flex; gap: 24px; align-items: center; border-bottom: 1px solid #2a2d3a; margin: -24px -24px 24px -24px; }
nav { background: #1a1d27; padding: 12px 24px; display: flex; gap: 24px; align-items: center; border-bottom: 1px solid #2a2d3a; margin: -24px -24px 24px -24px; position: relative; }
nav a { color: #8b8fa8; text-decoration: none; font-size: 14px; }
nav a:hover, nav a.active { color: #fff; }
nav .brand { color: #fff; font-weight: 600; margin-right: 16px; }

View File

@@ -10,29 +10,25 @@
body {
background: #0d1117;
color: #c9d1d9;
font-family: 'Segoe UI', system-ui, sans-serif;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
font-size: 14px;
min-height: 100vh;
}
nav { background: #1a1d27; padding: 12px 24px; display: flex; gap: 24px; align-items: center; border-bottom: 1px solid #2a2d3a; }
nav a { color: #8b8fa8; text-decoration: none; font-size: 14px; }
nav a:hover, nav a.active { color: #fff; }
nav .brand { color: #fff; font-weight: 600; margin-right: 16px; }
header {
display: flex;
align-items: center;
gap: 16px;
padding: 20px 24px 16px;
padding: 16px 24px 12px;
border-bottom: 1px solid #21262d;
}
header h1 { font-size: 18px; font-weight: 600; color: #e6edf3; }
header a {
color: #58a6ff;
text-decoration: none;
font-size: 13px;
opacity: 0.8;
}
header a:hover { opacity: 1; }
#last-updated { margin-left: auto; font-size: 12px; color: #6e7681; }
/* ── filters ── */
@@ -230,8 +226,15 @@
</head>
<body>
<nav>
<span class="brand">✈ FR24</span>
<a href="/">Карта</a>
<a href="/schedule" class="active">Расписание</a>
<a href="/monitoring">Мониторинг</a>
<a href="/data-sources">Источники</a>
</nav>
<header>
<a href="/">← Главная</a>
<h1>✈ Табло аэропортов Москвы</h1>
<span id="last-updated"></span>
</header>