1// to scale checkboxes with the rest of the page use this:
2//Note, use width percent, height auto and the scale command inside another div as a ref
3<div style="width:100%; height:auto;">
4 <input type="checkbox" style="width:20%; height:auto; transform: scale(2.5);">
5</div>
1/* https://developer.mozilla.org/en-US/docs/Web/CSS/zoom */
2
3input[type=checkbox] {
4 zoom: 2;
5}