Skip to content

Instantly share code, notes, and snippets.

@karamanskiy
Last active October 22, 2021 07:23
Show Gist options
  • Save karamanskiy/54aaad4afa8714a928629115da1250a6 to your computer and use it in GitHub Desktop.
Save karamanskiy/54aaad4afa8714a928629115da1250a6 to your computer and use it in GitHub Desktop.
Стилизированный checkbox
// HTML
<label>
<input class="checkbox" type="checkbox" name="checkbox-test">
<span class="checkbox-custom"></span>
<span class="label">Lorem ipsum dolor</span>
</label>
// CSS
.checkbox {
display: none;
}
.checkbox-custom {
position: relative;
width: 20px;
height: 20px;
border: 2px solid #ccc;
border-radius: 3px;
}
.checkbox-custom,
.label {
display: inline-block;
vertical-align: middle;
}
.checkbox:checked + .checkbox-custom::before {
content: "";
display: block;
position: absolute;
top: 2px;
right: 2px;
bottom: 2px;
left: 2px;
background: #413548;
border-radius: 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment