-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (63 loc) · 1.18 KB
/
Copy pathstyles.css
File metadata and controls
68 lines (63 loc) · 1.18 KB
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
.countdown-widget {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding: 24px;
text-align: center;
gap: 4px;
}
/* Primary elements */
.countdown-days {
font-size: 3.2em;
font-weight: 600;
color: var(--text-normal);
line-height: 1;
margin-bottom: 4px;
}
.countdown-label {
font-size: 1em;
font-weight: 300;
color: var(--text-muted);
margin-bottom: 16px;
text-transform: uppercase;
letter-spacing: 1px;
}
.countdown-event {
font-size: 1.25em;
font-weight: 400;
color: var(--text-normal);
margin-bottom: 8px;
max-width: 80%;
word-wrap: break-word;
}
.countdown-error {
font-size: 1.25em;
font-weight: 400;
color: var(--text-error);
margin-bottom: 8px;
}
.countdown-date-footer {
font-size: 0.8em;
font-weight: 300;
color: var(--text-faint);
margin-top: 16px;
letter-spacing: 0.5px;
opacity: 0.8;
}
.setting-error-message {
color: var(--text-error);
font-size: 0.75em;
margin-top: 8px;
margin-bottom: 8px;
font-style: italic;
display: none;
width: 100%;
clear: both;
box-sizing: border-box;
padding-left: 4px;
}
.setting-error-message.visible {
display: block;
}