nightTab/css/clock.css

37 lines
550 B
CSS
Raw Normal View History

2018-12-26 08:45:53 +01:00
.clock {
margin: 0;
padding: 0;
2018-12-26 18:43:38 +01:00
width: 100%;
2018-12-26 08:45:53 +01:00
font-family: var(--font-fjalla);
font-size: 1.5em;
color: var(--white);
text-align: center;
2018-12-26 18:43:38 +01:00
display: flex;
flex-direction: row;
justify-content: center;
2018-12-26 08:45:53 +01:00
transition: all var(--animation-speed-medium) ease-in-out;
}
.clock-seperator {
color: rgb(var(--accent));
}
2018-12-26 18:43:38 +01:00
.clock-hour,
.clock-minutes,
.clock-seconds {
min-width: 1.75em;
display: block;
}
2018-12-26 08:45:53 +01:00
.clock-hour {
color: var(--white);
}
.clock-minutes {
color: var(--gray-16);
}
.clock-seconds {
color: var(--gray-12);
}