1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
/* Shared */
.large-button {
padding: 6px;
}
/* alarms */
.alarm-time {
font-size: 2.5em;
font-weight: 300;
}
.clocks-ampm-toggle-button,
.clocks-secondary-standalone-label {
font-size: 18pt;
}
.clocks-standalone-label,
.clocks-ringing-label {
font-size: 6em;
font-weight: 300;
}
.clocks-standalone-label-small {
font-size: 4.0em;
font-weight: 300;
}
.clocks-ringing-title {
font-size: 1.5em;
font-weight: bold;
}
.clocks-alarm-setup-time {
font-size: 32pt;
}
/* Timer Panel */
.clocks-timer-label {
font-size: 48pt;
}
.clocks-spinbutton {
font-size: 42pt;
}
.clocks-spinbutton > text {
padding: 0px 7px;
}
/* disguise insensitive spinbuttons as normal labels */
.timer-countdown {
font-size: 40pt;
font-weight: 300;
}
/* Stopwatch Panel */
.lap-time {
font-weight: bold;
}
.stopped-stopwatch label,
.running-stopwatch label,
.paused-stopwatch label {
font-size: 70px;
font-weight: lighter;
}
.stopped-stopwatch .seconds-label,
.running-stopwatch .seconds-label,
.paused-stopwatch .seconds-label {
font-weight: 300;
}
.running-stopwatch .seconds-label,
.running-stopwatch .miliseconds-label {
color: var(--accent-color);
}
.stopped-stopwatch .miliseconds-label,
.running-stopwatch .miliseconds-label,
.paused-stopwatch .miliseconds-label {
font-size: 50px;
}
/* World */
.clock-location {
font-weight: bolder;
}
.hidden {
opacity: 0;
}
.clock-time {
font-size: 2em;
padding: 0.2em 0.5em;
border-radius: 1em;
color: oklab(from var(--pill-color) var(--standalone-color-oklab));
background-color: color-mix(in srgb, var(--pill-color) 25%, transparent);
}
.none {
--pill-color: var(--card-fg-color);
}
.night {
--pill-color: var(--blue-3);
}
.naut, .astro {
--pill-color: var(--orange-3);
}
.civil, .day {
--pill-color: var(--yellow-5);
}
|