2026-07-11 18:17:15 -04:00
|
|
|
.replay-map-panel {
|
|
|
|
|
min-height: 244px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border: 1px solid var(--border);
|
|
|
|
|
background: var(--surface);
|
2026-07-12 13:23:07 -04:00
|
|
|
border-radius: var(--s2);
|
2026-07-11 18:17:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-map-stage {
|
|
|
|
|
position: relative;
|
|
|
|
|
min-height: 244px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-map-svg {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
min-height: 244px;
|
|
|
|
|
display: block;
|
|
|
|
|
background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.04), transparent 62%);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-map-outline-shadow,
|
|
|
|
|
.replay-map-outline {
|
|
|
|
|
fill: none;
|
|
|
|
|
vector-effect: non-scaling-stroke;
|
|
|
|
|
stroke-linecap: round;
|
|
|
|
|
stroke-linejoin: round;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-map-outline-shadow {
|
|
|
|
|
stroke: rgba(255, 255, 255, 0.08);
|
|
|
|
|
stroke-width: 5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-map-outline {
|
|
|
|
|
stroke: var(--text-2);
|
|
|
|
|
stroke-width: 1.8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-car {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
outline: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-car circle {
|
|
|
|
|
stroke: var(--bg);
|
|
|
|
|
stroke-width: 0.8;
|
|
|
|
|
filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.55));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-car text {
|
|
|
|
|
fill: #fff;
|
|
|
|
|
font-family: var(--f-mono);
|
|
|
|
|
font-size: 2.6px;
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
text-anchor: middle;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
paint-order: stroke;
|
|
|
|
|
stroke: rgba(0, 0, 0, 0.75);
|
|
|
|
|
stroke-width: 0.7;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-car:not(.replay-car-pinned) text {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-car:hover text,
|
|
|
|
|
.replay-car:focus-visible text,
|
|
|
|
|
.replay-car-pinned text {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.replay-car-pinned circle {
|
|
|
|
|
stroke: #fff;
|
|
|
|
|
stroke-width: 1.2;
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-12 13:23:07 -04:00
|
|
|
.replay-map-empty-card {
|
2026-07-11 18:17:15 -04:00
|
|
|
min-height: 244px;
|
|
|
|
|
display: grid;
|
2026-07-12 13:23:07 -04:00
|
|
|
place-content: center;
|
|
|
|
|
padding: var(--s6);
|
|
|
|
|
margin: 0;
|
2026-07-11 18:17:15 -04:00
|
|
|
}
|
|
|
|
|
|
2026-07-12 13:23:07 -04:00
|
|
|
.replay-map-empty-card .empty-state-icon {
|
|
|
|
|
margin: 0 auto var(--s3);
|
|
|
|
|
color: var(--text-3);
|
2026-07-11 18:17:15 -04:00
|
|
|
}
|