mirror of
https://github.com/exogen/t2-mapper.git
synced 2026-03-26 15:49:32 +00:00
53 lines
863 B
CSS
53 lines
863 B
CSS
|
|
.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;
|
||
|
|
font-size: 14px;
|
||
|
|
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 1 0;
|
||
|
|
min-width: 0;
|
||
|
|
max-width: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.Speed {
|
||
|
|
flex-shrink: 0;
|
||
|
|
padding: 2px 4px;
|
||
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
||
|
|
border-radius: 3px;
|
||
|
|
background: rgba(0, 0, 0, 0.6);
|
||
|
|
color: #fff;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|