blob: 076b5d14e14cb268c52877b927a0a2d191a5d251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
div.switch-outer {
background: var(--col-switch-bg);
border-radius: 20px;
border: 1px solid var(--col-switch-fg);
height: 20px;
transition: background 0.1s linear;
width: 40px;
}
div.switch-inner {
background: var(--col-switch-fg);
border-radius: 20px;
height: 20px;
transition: margin-left 0.1s linear;
width: 20px;
}
input:checked + div.switch-outer {
background: var(--col-switch-bg-hl);
}
input:checked + div.switch-outer > div.switch-inner {
margin-left: 20px;
}
|