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>