summaryrefslogtreecommitdiff
path: root/sysret.org/themes/tabi-lean/sass/parts/_image-toggler.scss
blob: e2f420e7882da2b2f58f216b2460aa4a074b0b4a (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
.image-label {
    cursor: pointer;
}

.image-toggled {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
}

.image-toggler-toggle {
    display: none;
}

.image-toggler-toggle:checked ~ .image-label .image-toggled {
    position: static;
    visibility: visible;
}

.image-toggler-toggle:checked ~ .image-label .image-default {
    position: absolute;
    visibility: hidden;
}