Fork me on GitHub

@bndynet/pretty-check

Checkbox

themes
.checkbox-circle
.checkbox-flat
<input disabled />
Without label text
Indeterminate state
Html Code

<div class="checkbox checkbox-animated checkbox-[flat|circle] checkbox-[dark|primary|success|...]">
    <input id="chk" type="checkbox">
    <label for="chk">
        Label for checkbox
    </label>
</div>
                

Radio

themes
Disabled
As Checkboxes

Radios can be made to look like checkboxes.

Html Code

<div class="radio radio-animated radio-[dark|primary|success|...]">
    <input id="rd1" type="radio">
    <label for="rd1">
        Label for radio
    </label>
</div>