blob: 4c2d3a59aeb68480df7bf5fe081a953cc221df3e (
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
25
26
27
|
div.switch-outer {
background: var(--col-switch-bg);
border-radius: 20px;
border: 1px solid var(--col-switch-fg);
cursor: pointer;
height: 20px;
transition: background 0.1s linear;
width: 40px;
}
div.switch-inner {
background: var(--col-switch-fg);
border-radius: 20px;
height: 18px;
transition: margin-left 0.1s linear;
width: 18px;
margin-top: 1px;
margin-left: 1px;
}
input:checked + div.switch-outer {
background: var(--col-switch-bg-hl);
}
input:checked + div.switch-outer > div.switch-inner {
margin-left: 21px;
}
|