Skip to content

Instantly share code, notes, and snippets.

@hatefulcrawdad
Created February 28, 2013 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hatefulcrawdad/5057729 to your computer and use it in GitHub Desktop.
Save hatefulcrawdad/5057729 to your computer and use it in GitHub Desktop.
<!-- Radio Inputs -->
<form class="custom">
<label for="radio1">
<input name="radio1" type="radio" id="radio1" style="display:none;">
<span class="custom radio"></span> Radio Button 1
</label>
</form>
<!-- Checkboxes -->
<form class="custom">
<label for="checkbox1">
<input type="checkbox" id="checkbox1" style="display: none;">
<span class="custom checkbox"></span> Label for Checkbox
</label>
</form>
<!-- Select Lists -->
<form class="custom">
<label for="customDropdown">Medium Example</label>
<select id="customDropdown">
<option DISABLED>This is a dropdown</option>
<option>This is another option</option>
<option>This is another option too</option>
<option>Look, a third option</option>
</select>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment