Get rid of native look n' feel with our very own custom checkboxes written purely in CSS. These are retina compatible and available in all Bootstrap's contextual classes (ex: .primary)
Checkbox
<div class="form-check">
<input type="checkbox" id="defaultCheck" checked>
<label for="defaultCheck">
Default checkbox
</label>
</div>
<div class="form-check complete">
<input type="checkbox" id="checkColorOpt1">
<label for="checkColorOpt1">
I agree to the terms and conditions
</label>
</div>
<div class="form-check primary">
<input type="checkbox" id="checkColorOpt2" checked>
<label for="checkColorOpt2">
Mark as read
</label>
</div>
Shape options
Bored with traditional boxed shape check boxes? Here is a circle one simply add the class .checkbox-circle to change it
<div class="form-check checkbox-circle danger">
<input type="checkbox" id="checkcircleColorOpt1">
<label for="checkcircleColorOpt1">
Delete all personal settings
</label>
</div>
<div class="form-check checkbox-circle complete">
<input type="checkbox" id="checkcircleColorOpt2" checked>
<label for="checkcircleColorOpt2">
Keep me signed in
</label>
</div>
State options
These act the same way as normal HTML check boxes. Here are some states that