1
0
mirror of https://github.com/Chalarangelo/mini.css.git synced 2025-08-22 05:22:56 +02:00

Initial commit for checkboxes

This commit is contained in:
Angelos Chalaris
2016-10-30 22:15:18 +02:00
parent d83131cc6b
commit 5b4a224c4c
7 changed files with 147 additions and 31 deletions

View File

@@ -318,6 +318,18 @@
<input type="search" placeholder="search..." value="">
</fieldset>
</form>
<h3>Checkboxes and Radio buttons</h3>
<p>Checkboxes and radio buttons are styled using the <a href="">checkbox hack</a>, while keeping things simple and adding just the needed consistency for those input types. You can see some examples below:</p>
<form>
<div class="input-group">
<input type="checkbox" id="c1"> <label for="c1">Test</label>
</div><br>
<div class="input-group">
<input type="radio" name="gender" value="male" checked id="i1"> <label for="i1">Male</label>
<input type="radio" name="gender" value="female" id="i2"> <label for="i2">Female</label>
<input type="radio" name="gender" value="other"checked id="i3"> <label for="i3">Other</label>
</div>
</form>
</div>
</div>
</div>