2018-12-26 08:45:53 +01:00
|
|
|
.clock {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-01-03 23:30:27 +01:00
|
|
|
font-size: 1em;
|
2018-12-26 08:45:53 +01:00
|
|
|
font-family: var(--font-fjalla);
|
2019-04-01 17:11:39 +02:00
|
|
|
color: rgb(var(--style-neutral-text));
|
2019-01-03 23:30:27 +01:00
|
|
|
width: 100%;
|
|
|
|
min-height: 2.5em;
|
2018-12-26 18:43:38 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-04-26 14:48:37 +02:00
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
2019-01-03 23:30:27 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 19:22:42 +02:00
|
|
|
.is-header-item-alignment-horizontal-left .clock {
|
2019-05-23 20:15:14 +02:00
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2019-06-06 19:22:42 +02:00
|
|
|
.is-header-item-alignment-horizontal-center .clock {
|
2019-05-23 20:15:14 +02:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2019-06-06 19:22:42 +02:00
|
|
|
.is-header-item-alignment-horizontal-right .clock {
|
2019-05-23 20:15:14 +02:00
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-01-05 23:35:50 +01:00
|
|
|
.clock-separator,
|
2019-01-03 23:30:27 +01:00
|
|
|
.clock-hours,
|
|
|
|
.clock-minutes,
|
|
|
|
.clock-seconds,
|
|
|
|
.clock-meridiem {
|
|
|
|
font-size: 1.5em;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2019-04-26 14:48:37 +02:00
|
|
|
white-space: nowrap;
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
|
|
|
|
2019-01-05 23:35:50 +01:00
|
|
|
.clock-separator {
|
2019-04-01 17:15:57 +02:00
|
|
|
justify-content: center;
|
2019-06-11 11:54:10 +02:00
|
|
|
color: rgb(var(--theme-accent));
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
|
|
|
|
2019-01-03 23:30:27 +01:00
|
|
|
.clock-hours,
|
2018-12-26 18:43:38 +01:00
|
|
|
.clock-minutes,
|
2019-01-03 23:30:27 +01:00
|
|
|
.clock-seconds,
|
|
|
|
.clock-meridiem {
|
2019-04-01 17:15:57 +02:00
|
|
|
justify-content: center;
|
2019-01-03 23:30:27 +01:00
|
|
|
min-width: 1.25em;
|
|
|
|
}
|
|
|
|
|
2019-06-06 19:22:42 +02:00
|
|
|
.is-header-item-alignment-horizontal-left .clock-item:not(:last-child) {
|
2019-05-23 20:15:14 +02:00
|
|
|
margin-right: 0.2em;
|
2018-12-26 18:43:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 19:22:42 +02:00
|
|
|
.is-header-item-alignment-horizontal-center .clock-item:not(:first-child),
|
|
|
|
.is-header-item-alignment-horizontal-center .clock-item:not(:last-child) {
|
2019-05-23 20:15:14 +02:00
|
|
|
margin-left: 0.1em;
|
|
|
|
margin-right: 0.1em;
|
|
|
|
}
|
|
|
|
|
2019-06-06 19:22:42 +02:00
|
|
|
.is-header-item-alignment-horizontal-right .clock-item:not(:first-child) {
|
2019-05-23 20:15:14 +02:00
|
|
|
margin-left: 0.2em;
|
2019-01-03 23:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.clock-hours {
|
2019-04-01 17:11:39 +02:00
|
|
|
color: rgb(var(--style-neutral-text));
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
2019-01-03 23:30:27 +01:00
|
|
|
|
2019-01-24 21:28:11 +01:00
|
|
|
.clock-minutes,
|
|
|
|
.clock-seconds,
|
2019-01-03 23:30:27 +01:00
|
|
|
.clock-meridiem {
|
2019-04-26 14:48:37 +02:00
|
|
|
color: rgb(var(--gray-16));
|
2019-01-03 23:30:27 +01:00
|
|
|
}
|