8 lines
155 B
CSS
Raw Normal View History

input:checked ~ .dot {
transform: translateX(100%);
2024-12-11 15:02:39 +01:00
}
input:not(:checked) ~ .dot {
transform: translateX(0);
background-color: rgb(156, 163, 175);
2024-12-11 15:02:39 +01:00
}