30 lines
531 B
CSS
30 lines
531 B
CSS
/* ============================================
|
|
TIME DISPLAY
|
|
Clean & Modern Design
|
|
============================================ */
|
|
|
|
.time-display {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
color: var(--player-text);
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
font-variant-numeric: tabular-nums;
|
|
user-select: none;
|
|
}
|
|
|
|
.time-separator {
|
|
color: var(--player-text-secondary);
|
|
}
|
|
|
|
.time-duration {
|
|
color: var(--player-text-secondary);
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.time-display {
|
|
font-size: 12px;
|
|
}
|
|
}
|