mirror of
https://github.com/zombieFox/nightTab.git
synced 2024-11-24 09:03:39 +01:00
37 lines
550 B
CSS
37 lines
550 B
CSS
.clock {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
font-family: var(--font-fjalla);
|
|
font-size: 1.5em;
|
|
color: var(--white);
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
transition: all var(--animation-speed-medium) ease-in-out;
|
|
}
|
|
|
|
.clock-seperator {
|
|
color: rgb(var(--accent));
|
|
}
|
|
|
|
.clock-hour,
|
|
.clock-minutes,
|
|
.clock-seconds {
|
|
min-width: 1.75em;
|
|
display: block;
|
|
}
|
|
|
|
.clock-hour {
|
|
color: var(--white);
|
|
}
|
|
|
|
.clock-minutes {
|
|
color: var(--gray-16);
|
|
}
|
|
|
|
.clock-seconds {
|
|
color: var(--gray-12);
|
|
}
|