I am trying to a style a checkbox in bootstrap. Which includes increasing height and width and changing the border. But with hard luck I found that the only way was using -webkit. Here is the code
input.largerCheckbox {
  width: 30px;
  height: 30px;
  -webkit-transform: scale(1.3, 1.3);
}<input type="checkbox" class="largerCheckbox" name="checkBox">In the above snippet, even the scale is zooming the checkbox the bigger size I wanted. It is simply distorted or out of shape. Is there any better way, Also border does not work. Any suggestions?
Note: I meant out of shape in mobile phones like iPhone or Android
 
     
     
     
    