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
|
| .darkmode {
| text-align: right;
|
| & > .toggle {
| display: none;
| box-sizing: border-box;
|
| &:checked + .toggle-button:after {
| left: 50%;
| }
|
| & + .toggle-button {
| box-sizing: border-box;
| outline: 0;
| display: inline-block;
| width: 3em;
| height: 1.5em;
| position: relative;
| cursor: pointer;
| border: 2px solid var(--gray);
| user-select: none;
| padding: 2px;
| transition: all 0.2s ease;
| border-radius: 2em;
|
| &:after, &:before {
| position: relative;
| display: block;
| box-sizing: border-box;
| content: "";
| width: 50%;
| height: 100%;
| }
|
| &:before {
| display: none;
| }
|
| &:after {
| left: 0;
| transition: all 0.2s ease;
| background: var(--gray);
| content: "";
| border-radius: 1em;
| }
| }
| }
|
| & #dayIcon {
| position: relative;
| width: 20px;
| height: 20px;
| top: -1.5px;
| margin: 0 7px;
| fill: var(--gray);
| }
|
| & #nightIcon {
| position: relative;
| width: 18px;
| height: 18px;
| top: -2px;
| margin: 0 7px;
| fill: var(--gray);
| }
| }
|
|