Larger checkboxes

Larger checkboxes with simple css

by Chris

HTML

<input type="checkbox" value="Click registered" />

CSS

input[type='checkbox']{
  width: 30px !important;
  height: 30px !important;
  margin: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance:none;
  outline: 2px solid lightblue;
  box-shadow: none;
  font-size: 2em;
}

JavaScript

$('input').click(function(event){
	alert($(this).val());
})