mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
56 lines
684 B
SCSS
56 lines
684 B
SCSS
.label {
|
|
color: $label-gray;
|
|
font-size: calc(1rem - 2px);
|
|
}
|
|
|
|
.clock {
|
|
text-align: left;
|
|
font-size: 1.5rem;
|
|
letter-spacing: 0.5px;
|
|
min-width: 5em;
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
&::after {
|
|
content: '\200b';
|
|
}
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.label {
|
|
line-height: 0.9em;
|
|
width: 7em;
|
|
}
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
height: 2.25em;
|
|
|
|
.label {
|
|
text-align: right;
|
|
width: 5em;
|
|
}
|
|
|
|
.clock {
|
|
font-size: 1.25rem;
|
|
}
|
|
}
|
|
|
|
.daySpan {
|
|
&::after {
|
|
content: "*";
|
|
vertical-align: super;
|
|
font-size: 0.75em;
|
|
color: $info-blue;
|
|
}
|
|
}
|
|
|
|
.muted {
|
|
color: $muted-gray;
|
|
}
|