-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.css
77 lines (66 loc) · 1.12 KB
/
header.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
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
.theme-switcher-wrapper {
gap: 18px;
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: center;
}
.theme-switcher-wrapper h6 {
margin-bottom: 4.5px;
font-size: 13px;
font-weight: 500;
}
.theme-switcher {
display: flex;
flex-direction: column;
gap: 2.5px;
align-items: center;
justify-content: center;
}
.labels,
.options {
display: flex;
width: 100%;
justify-content: space-around;
gap: 8.5px;
}
.options {
background-color: var(--toggle-background);
padding: 4px;
border-radius: 25px;
}
label {
text-align: center;
font-size: 13.5px;
}
input {
appearance: none;
width: 18px;
height: 18px;
border-radius: 50%;
cursor: pointer;
}
input:checked {
background-color: var(--option);
}
:root {
--small-screen: 325px;
--medium-screen: 500px;
--large-screen: 700px;
}
/* Header */
header {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
header {
width: var(--small-screen);
margin: 15px 0;
}
header h1,
header h6,
header label {
color: var(--header-input-text);
}/*# sourceMappingURL=header.css.map */