-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (44 loc) · 823 Bytes
/
style.css
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
:root:not([data-theme="dark"]), [data-theme="light"] {
--primary: hsl(196deg, 100%, 25%);
--color: hsl(205deg, 30%, 25%);
--h1-color: hsl(191deg, 70%, 15%);
--muted-color: hsl(205deg, 10%, 40%);
--font-size: 15px;
--spacing: .75rem;
}
body > header {
padding-bottom: 1rem;
}
h1 {
line-height: 1;
margin-bottom: 1rem;
}
.hidden {
visibility: hidden;
}
footer{
text-align: center;
}
.credits,
a.github {
display: flex;
gap: .25em;
align-items: center;
justify-content: center;
}
label {
position: relative;
}
.inputmsg {
position: absolute;
right: 0;
}
.inputmsg.alert {
color: var(--form-element-invalid-border-color);
}
progress.valid {
--progress-color: var(--form-element-valid-border-color);
}
progress.error {
--progress-color: var(--form-element-invalid-border-color);
}