b3293f1de3
Co-authored-by: Codex <codex@openai.com> Signed-off-by: Stanislaw Grams <stanislawgrams@gmail.com>
254 lines
11 KiB
CSS
254 lines
11 KiB
CSS
:root {
|
|
--bg: #0d1117;
|
|
--card-bg: #161b22;
|
|
--input-bg: #0f1720;
|
|
--border: #1f2a35;
|
|
--border-light: #2d3748;
|
|
--text: #e5e7eb;
|
|
--text-muted: #9aa4b5;
|
|
--text-heading: #c5cedd;
|
|
--btn-bg: #1f2937;
|
|
--btn-border: #394455;
|
|
--accent-green: #00d17f;
|
|
--accent-yellow: #f0ad4e;
|
|
--accent-red: #e55353;
|
|
}
|
|
|
|
body { font-family: sans-serif; margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg); color: var(--text); }
|
|
.card { border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.75rem; width: min(680px, 90vw); box-shadow: 0 12px 40px rgba(0,0,0,0.35); background: var(--card-bg); }
|
|
.label { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 6px; display: block; }
|
|
.status { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem 1rem; }
|
|
input.status-input, select.status-input { width: 100%; padding: 0.45rem 0.5rem; font-size: 1rem; border: 1px solid var(--border-light); border-radius: 6px; background: var(--input-bg); color: var(--text); }
|
|
#freq { font-family: 'DSEG14 Classic', monospace; font-size: 2rem; padding: 0.5rem 0.6rem; letter-spacing: 0.05em; text-align: center; }
|
|
.controls-row {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
align-items: start;
|
|
}
|
|
.btn-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 0.5rem;
|
|
}
|
|
.btn-grid button { width: 100%; height: 2.6rem; }
|
|
.jog-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
margin-top: 0.6rem;
|
|
}
|
|
.jog-wheel {
|
|
width: 52px;
|
|
height: 52px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle at 40% 35%, #2a3444, #1a2230);
|
|
border: 2px solid var(--border-light);
|
|
position: relative;
|
|
cursor: grab;
|
|
flex-shrink: 0;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
touch-action: none;
|
|
}
|
|
.jog-indicator {
|
|
position: absolute;
|
|
width: 4px;
|
|
height: 10px;
|
|
background: var(--accent-green);
|
|
border-radius: 2px;
|
|
top: 4px;
|
|
left: 50%;
|
|
transform-origin: 50% 22px;
|
|
transform: translateX(-50%);
|
|
pointer-events: none;
|
|
}
|
|
.jog-btn {
|
|
width: 2.2rem;
|
|
height: 2.2rem;
|
|
font-size: 1.2rem;
|
|
padding: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
.jog-step {
|
|
display: flex;
|
|
border: 1px solid var(--border-light);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
margin-left: 0.3rem;
|
|
}
|
|
.jog-step button {
|
|
border: none;
|
|
border-right: 1px solid var(--border-light);
|
|
border-radius: 0;
|
|
height: 2rem;
|
|
padding: 0 0.55rem;
|
|
font-size: 0.78rem;
|
|
background: var(--input-bg);
|
|
color: var(--text-muted);
|
|
cursor: pointer;
|
|
}
|
|
.jog-step button:last-child { border-right: none; }
|
|
.jog-step button.active {
|
|
background: var(--btn-bg);
|
|
color: var(--accent-green);
|
|
font-weight: 600;
|
|
}
|
|
.vfo-picker {
|
|
display: flex;
|
|
border: 1px solid var(--border-light);
|
|
border-radius: 6px;
|
|
overflow: hidden;
|
|
}
|
|
.vfo-picker button {
|
|
flex: 1;
|
|
border: none;
|
|
border-right: 1px solid var(--border-light);
|
|
border-radius: 0;
|
|
height: 2.6rem;
|
|
background: var(--input-bg);
|
|
color: var(--text-muted);
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
font-size: 0.85rem;
|
|
}
|
|
.vfo-picker button:last-child { border-right: none; }
|
|
.vfo-picker button.active {
|
|
background: var(--btn-bg);
|
|
font-weight: 600;
|
|
}
|
|
.signal-measure {
|
|
display: inline-flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
margin-top: 0.4rem;
|
|
}
|
|
button { padding: 0.5rem 0.9rem; border-radius: 6px; border: 1px solid var(--btn-border); background: var(--btn-bg); color: var(--text); cursor: pointer; height: 2.6rem; }
|
|
button:disabled { opacity: 0.6; cursor: not-allowed; }
|
|
.hint { color: var(--text-muted); font-size: 0.85rem; }
|
|
.inline { display: flex; gap: 0.5rem; align-items: center; }
|
|
small { color: var(--text-muted); }
|
|
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.25rem; }
|
|
.title { font-size: 1.4rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem; }
|
|
.header-logo { height: 5em; width: auto; flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35)); }
|
|
.subtitle { color: var(--text-muted); font-size: 0.95rem; }
|
|
.subtitle a { color: var(--accent-green); text-decoration: none; }
|
|
.subtitle a:hover { text-decoration: underline; }
|
|
.band-tag { display: inline-block; padding: 2px 6px; border-radius: 6px; background: var(--btn-bg); color: var(--text); font-size: 0.82rem; border: 1px solid var(--border-light); margin-left: 6px; }
|
|
.signal { display: flex; gap: 0.6rem; align-items: center; }
|
|
.signal-bar { flex: 1 1 auto; height: 12px; border-radius: 999px; background: var(--btn-bg); border: 1px solid var(--border-light); overflow: hidden; }
|
|
.signal-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow), var(--accent-red)); transition: width 150ms ease; }
|
|
.signal-value { font-size: 0.95rem; color: var(--text-heading); min-width: 48px; text-align: right; }
|
|
.meter { display: flex; gap: 0.6rem; align-items: center; }
|
|
.meter-bar { flex: 1 1 auto; height: 12px; border-radius: 999px; background: var(--btn-bg); border: 1px solid var(--border-light); overflow: hidden; }
|
|
.meter-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow), var(--accent-red)); transition: width 150ms ease; }
|
|
.meter-value { font-size: 0.95rem; color: var(--text-heading); min-width: 64px; text-align: right; }
|
|
#content { display: flex; flex-direction: column; gap: 1.1rem; }
|
|
.tab-bar { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1rem; position: relative; z-index: 2; }
|
|
.tab { background: transparent; border: none; border-bottom: 2px solid transparent; border-radius: 0; padding: 0.5rem 1rem; color: var(--text-muted); cursor: pointer; font-size: 0.95rem; height: auto; }
|
|
.tab.active { border-bottom-color: var(--accent-green); color: var(--accent-green); font-weight: 600; }
|
|
.tab:hover:not(.active) { color: var(--text); }
|
|
.about-table { width: 100%; border-collapse: collapse; }
|
|
.about-table td { padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--border); }
|
|
.about-table tr:last-child td { border-bottom: none; }
|
|
.about-table td:first-child { color: var(--text-muted); width: 40%; }
|
|
.plugin-item { padding: 0.5rem 0.6rem; border-bottom: 1px solid var(--border); color: var(--text); }
|
|
.plugin-item:last-child { border-bottom: none; }
|
|
.footer { display: flex; justify-content: space-between; align-items: baseline; margin-top: 1.1rem; }
|
|
.full-row { grid-column: 1 / -1; }
|
|
.copyright { color: var(--text-muted); font-size: 0.75rem; opacity: 0.7; }
|
|
.copyright a { color: var(--accent-green); text-decoration: none; }
|
|
.copyright a:hover { text-decoration: underline; }
|
|
|
|
.vol-label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.15rem;
|
|
color: var(--text-muted);
|
|
font-size: 0.82rem;
|
|
white-space: nowrap;
|
|
}
|
|
.vol-pct {
|
|
font-size: 0.72rem;
|
|
color: var(--text-muted);
|
|
line-height: 1;
|
|
}
|
|
.vol-slider {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 80px;
|
|
height: 6px;
|
|
border-radius: 3px;
|
|
background: var(--btn-bg);
|
|
border: 1px solid var(--border-light);
|
|
outline: none;
|
|
cursor: pointer;
|
|
}
|
|
.vol-slider::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: var(--accent-green);
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.vol-slider::-moz-range-thumb {
|
|
width: 14px;
|
|
height: 14px;
|
|
border-radius: 50%;
|
|
background: var(--accent-green);
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sub-tab-bar { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 0.75rem; }
|
|
.sub-tab { background: transparent; border: none; border-bottom: 2px solid transparent; border-radius: 0; padding: 0.35rem 0.75rem; color: var(--text-muted); cursor: pointer; font-size: 0.85rem; height: auto; }
|
|
.sub-tab.active { border-bottom-color: var(--accent-green); color: var(--accent-green); font-weight: 600; }
|
|
.sub-tab:hover:not(.active) { color: var(--text); }
|
|
#aprs-map { height: 400px; border-radius: 6px; }
|
|
.aprs-controls { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.75rem; }
|
|
#aprs-packets { max-height: 360px; overflow-y: auto; border: 1px solid var(--border-light); border-radius: 6px; background: var(--input-bg); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
|
|
.aprs-packet { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.82rem; padding: 0.35rem 0.5rem; border-bottom: 1px solid var(--border); line-height: 1.4; }
|
|
.aprs-packet:last-child { border-bottom: none; }
|
|
.aprs-call { color: var(--accent-green); font-weight: 600; }
|
|
.aprs-time { color: var(--text-muted); margin-right: 0.5rem; }
|
|
.aprs-symbol { display: inline-block; width: 24px; height: 24px; background-size: 384px 192px; vertical-align: middle; margin-right: 0.3rem; }
|
|
.aprs-pos { color: var(--accent-green); text-decoration: none; margin-left: 0.3rem; font-size: 0.8rem; }
|
|
.aprs-pos:hover { text-decoration: underline; }
|
|
.aprs-byte { color: var(--accent-yellow); background: rgba(255, 214, 0, 0.12); border: 1px solid rgba(255, 214, 0, 0.25); border-radius: 4px; padding: 0 0.2rem; margin: 0 0.1rem; font-size: 0.78em; }
|
|
|
|
.cw-controls { display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.75rem; }
|
|
.cw-config { display: flex; gap: 1rem; align-items: flex-end; flex-wrap: wrap; margin-bottom: 0.75rem; }
|
|
.cw-config label { display: flex; flex-direction: column; gap: 0.2rem; color: var(--text-muted); font-size: 0.82rem; }
|
|
.cw-config input[type="number"] { width: 5rem; padding: 0.3rem 0.4rem; font-size: 0.9rem; border: 1px solid var(--border-light); border-radius: 6px; background: var(--input-bg); color: var(--text); }
|
|
#cw-output { max-height: 360px; overflow-y: auto; border: 1px solid var(--border-light); border-radius: 6px; background: var(--input-bg); font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 0.85rem; padding: 0.4rem 0.5rem; min-height: 60px; white-space: pre-wrap; word-break: break-all; }
|
|
.cw-line { line-height: 1.5; }
|
|
.cw-signal-on { width: 10px; height: 10px; border-radius: 50%; background: var(--accent-green); box-shadow: 0 0 6px var(--accent-green); flex-shrink: 0; }
|
|
.cw-signal-off { width: 10px; height: 10px; border-radius: 50%; background: var(--border-light); flex-shrink: 0; }
|
|
.cw-auto-label { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; }
|
|
.cw-auto-label input[type="checkbox"] { margin: 0; cursor: pointer; }
|
|
.cw-config input[type="number"][readonly] { opacity: 0.6; }
|
|
|
|
button:focus-visible, input:focus-visible, select:focus-visible {
|
|
outline: 2px solid var(--accent-green);
|
|
outline-offset: 2px;
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
.card { padding: 1rem; }
|
|
button { min-height: 2.8rem; font-size: 0.95rem; }
|
|
input.status-input, select.status-input { font-size: 1.1rem; }
|
|
.controls-row { grid-template-columns: 1fr; }
|
|
.jog-container { flex-wrap: wrap; }
|
|
.vfo-picker { flex-direction: column; }
|
|
.vfo-picker button { border-right: none; border-bottom: 1px solid var(--border-light); }
|
|
.vfo-picker button:last-child { border-bottom: none; }
|
|
}
|