Selecting input
affects every input element. Is there a way to select only checkboxes without applying a class to each checkbox element?
With CSS 2 you can do this:
input[type='checkbox'] { ... }
This should be pretty widely supported by now. See support for browsers