Last active
October 22, 2021 07:23
-
-
Save karamanskiy/54aaad4afa8714a928629115da1250a6 to your computer and use it in GitHub Desktop.
Стилизированный checkbox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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