t2-mapper/src/components/DemoPlaybackControls.module.css

68 lines
1.1 KiB
CSS
Raw Normal View History

2026-03-01 09:40:17 -08:00
.Root {
display: flex;
align-items: center;
gap: 10px;
padding: 8px 12px;
font-size: 13px;
z-index: 2;
}
.PlayPause {
width: 32px;
height: 32px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 4px;
background: rgba(3, 82, 147, 0.6);
color: #fff;
2026-03-22 21:11:02 -07:00
font-size: 11px;
2026-03-01 09:40:17 -08:00
cursor: pointer;
}
@media (hover: hover) {
.PlayPause:hover {
background: rgba(0, 98, 179, 0.8);
}
}
.Time {
flex-shrink: 0;
font-variant-numeric: tabular-nums;
white-space: nowrap;
}
.Seek[type="range"] {
flex: 1 0 20px;
width: 20px;
min-width: 20px;
2026-03-01 09:40:17 -08:00
max-width: none;
}
2026-03-22 21:11:02 -07:00
.Speed,
.CameraMode {
2026-03-01 09:40:17 -08:00
flex-shrink: 0;
2026-03-22 21:11:02 -07:00
padding: 3px 4px;
2026-03-01 09:40:17 -08:00
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 3px;
background: rgba(0, 0, 0, 0.6);
color: #fff;
2026-03-22 21:11:02 -07:00
font-size: 13px;
}
.Field {
display: flex;
align-items: center;
gap: 8px;
}
.Field label {
text-transform: uppercase;
color: rgba(255, 255, 255, 0.6);
font-weight: 500;
font-size: 11px;
2026-03-01 09:40:17 -08:00
}