Comment 2 for bug 1494748

Revision history for this message
Josh Stompro (u-launchpad-stompro-org) wrote :

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);
}