You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
402 B
SCSS
25 lines
402 B
SCSS
.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;
|
|
}
|