nightTab/css/clock.css
2018-12-26 10:43:38 -07:00

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);
}