277 lines
4.7 KiB
CSS
277 lines
4.7 KiB
CSS
:root {
|
|
--bg-1: #0b1e2d;
|
|
--bg-2: #113a4a;
|
|
--accent: #ffb703;
|
|
--accent-2: #fb8500;
|
|
--ok: #2ec4b6;
|
|
--fail: #ff4d6d;
|
|
--idle: #8ecae6;
|
|
--panel: rgba(9, 24, 33, 0.75);
|
|
--card: rgba(17, 39, 52, 0.82);
|
|
--border: rgba(255, 255, 255, 0.14);
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: "Space Grotesk", sans-serif;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
background: radial-gradient(circle at 20% 20%, var(--bg-2), transparent 42%),
|
|
radial-gradient(circle at 80% 30%, #215f6b, transparent 35%),
|
|
linear-gradient(140deg, var(--bg-1), #07131d 70%);
|
|
color: #f6f7f9;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.aurora {
|
|
position: fixed;
|
|
width: 42vmax;
|
|
height: 42vmax;
|
|
border-radius: 50%;
|
|
filter: blur(60px);
|
|
opacity: 0.22;
|
|
z-index: 0;
|
|
animation: drift 18s ease-in-out infinite alternate;
|
|
}
|
|
|
|
.aurora-a {
|
|
background: #ffb703;
|
|
top: -8vmax;
|
|
left: -8vmax;
|
|
}
|
|
|
|
.aurora-b {
|
|
background: #2ec4b6;
|
|
right: -10vmax;
|
|
bottom: -10vmax;
|
|
animation-delay: 4s;
|
|
}
|
|
|
|
@keyframes drift {
|
|
from {
|
|
transform: translateY(0) translateX(0) scale(1);
|
|
}
|
|
to {
|
|
transform: translateY(20px) translateX(30px) scale(1.1);
|
|
}
|
|
}
|
|
|
|
.hero-panel,
|
|
.log-panel {
|
|
background: var(--panel);
|
|
border: 1px solid var(--border);
|
|
border-radius: 20px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
.hero-panel h1 {
|
|
font-weight: 700;
|
|
letter-spacing: 0.4px;
|
|
}
|
|
|
|
.eyebrow {
|
|
text-transform: uppercase;
|
|
font-size: 0.78rem;
|
|
letter-spacing: 1.6px;
|
|
color: #ffdd99;
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
|
|
.btn-accent {
|
|
background: linear-gradient(130deg, var(--accent), var(--accent-2));
|
|
color: #092235;
|
|
border: 0;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.btn-accent:hover,
|
|
.btn-accent:focus {
|
|
color: #07131d;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.job-card {
|
|
background: var(--card);
|
|
border: 1px solid var(--border);
|
|
border-radius: 16px;
|
|
height: 100%;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
|
animation: reveal 0.45s ease both;
|
|
}
|
|
|
|
@keyframes reveal {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(8px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.mono {
|
|
font-family: "IBM Plex Mono", monospace;
|
|
}
|
|
|
|
.summary-box {
|
|
background: rgba(3, 12, 18, 0.5);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 10px;
|
|
padding: 0.55rem 0.7rem;
|
|
min-height: 42px;
|
|
word-break: break-word;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.4rem 0.6rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.summary-kv {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border-radius: 6px;
|
|
padding: 0.15rem 0.45rem;
|
|
font-size: 0.78rem;
|
|
}
|
|
|
|
.summary-key {
|
|
color: #8ecae6;
|
|
font-size: 0.72rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.4px;
|
|
}
|
|
|
|
.sync-in-progress {
|
|
color: #ffe2a3;
|
|
animation: pulse-text 1.4s ease-in-out infinite alternate;
|
|
}
|
|
|
|
@keyframes pulse-text {
|
|
from { opacity: 0.6; }
|
|
to { opacity: 1; }
|
|
}
|
|
|
|
.status-chip {
|
|
border-radius: 999px;
|
|
padding: 0.3rem 0.75rem;
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.status-running {
|
|
background: rgba(255, 183, 3, 0.22);
|
|
color: #ffe2a3;
|
|
}
|
|
|
|
.status-ok {
|
|
background: rgba(46, 196, 182, 0.2);
|
|
color: #a9f3eb;
|
|
}
|
|
|
|
.status-fail {
|
|
background: rgba(255, 77, 109, 0.2);
|
|
color: #ffc8d2;
|
|
}
|
|
|
|
.status-idle {
|
|
background: rgba(142, 202, 230, 0.2);
|
|
color: #cbefff;
|
|
}
|
|
|
|
.pill {
|
|
display: inline-block;
|
|
padding: 0.2rem 0.55rem;
|
|
border-radius: 999px;
|
|
border: 1px solid var(--border);
|
|
font-size: 0.72rem;
|
|
}
|
|
|
|
.level-info {
|
|
background: rgba(72, 149, 239, 0.2);
|
|
}
|
|
|
|
.level-warning {
|
|
background: rgba(255, 183, 3, 0.2);
|
|
}
|
|
|
|
.level-error {
|
|
background: rgba(255, 77, 109, 0.2);
|
|
}
|
|
|
|
.table {
|
|
--bs-table-bg: transparent;
|
|
--bs-table-color: #f6f7f9;
|
|
}
|
|
|
|
.table thead {
|
|
border-bottom: 1px solid var(--border);
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
background: #0b1e2d;
|
|
}
|
|
|
|
.table tbody tr {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.log-scroll {
|
|
max-height: 420px;
|
|
overflow-y: auto;
|
|
overflow-x: auto;
|
|
border-radius: 10px;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgba(255,255,255,0.2) transparent;
|
|
}
|
|
|
|
.log-scroll::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
.log-scroll::-webkit-scrollbar-thumb {
|
|
background: rgba(255,255,255,0.2);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
@keyframes flash-row {
|
|
0% { background: rgba(255, 183, 3, 0.25); }
|
|
100% { background: transparent; }
|
|
}
|
|
|
|
.row-new {
|
|
animation: flash-row 1.8s ease forwards;
|
|
}
|
|
|
|
.live-dot {
|
|
width: 9px;
|
|
height: 9px;
|
|
border-radius: 50%;
|
|
background: #2ec4b6;
|
|
flex-shrink: 0;
|
|
animation: dot-pulse 1.2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes dot-pulse {
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
50% { opacity: 0.4; transform: scale(0.75); }
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.hero-panel,
|
|
.log-panel {
|
|
border-radius: 16px;
|
|
}
|
|
|
|
.job-card {
|
|
border-radius: 14px;
|
|
}
|
|
}
|