For enlarging the checkboxes, this seems to do the trick.
input[type=checkbox] { /* Double-sized Checkboxes */ -ms-transform: scale(2.3); /* IE */ -moz-transform: scale(2.3); /* FF */ -webkit-transform: scale(2.3); /* Safari and Chrome */ -o-transform: scale(2.3); /* Opera */ padding: 10px; transform: scale(2.3); }
For enlarging the checkboxes, this seems to do the trick.
input[type= checkbox] transform: scale(2.3); /* Safari and Chrome */
{
/* Double-sized Checkboxes */
-ms-transform: scale(2.3); /* IE */
-moz-transform: scale(2.3); /* FF */
-webkit-
-o-transform: scale(2.3); /* Opera */
padding: 10px;
transform: scale(2.3);
}