improved accessibility (#425)

This commit is contained in:
FezVrasta 2015-03-09 18:01:22 +01:00
parent aa0de1b1bf
commit 3fccf450f9

View File

@ -57,7 +57,12 @@
opacity: 0.5;
}
input[type=radio] { display: none; }
input[type=radio] {
opacity: 0;
height: 0;
width: 0;
overflow: hidden;
} }
input[type=radio]:checked ~ .check {
transform: scale(0.55);
}