summaryrefslogtreecommitdiff
path: root/Server.Client/Pages/Component/Switch.razor.css
blob: 6b1f5d52064d23f43606f436bd5460403a28c50e (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
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:        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;
}