Created
December 4, 2017 07:23
-
-
Save trangsihung/6b04ccd3e26c13f4cfd8175a25656795 to your computer and use it in GitHub Desktop.
css style
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
.checkbox { | |
input[type="checkbox"], input[type="radio"] { display: none; } | |
label { | |
position: relative; | |
padding-left: 20px; | |
&:before { | |
content: ''; | |
width: 15px; height: 15px; | |
border: 1px solid #fff; | |
position: absolute; | |
top: 0; left: 0; | |
} | |
&:after { | |
content: ''; | |
width: 10px; | |
height: 6px; | |
border-left: 2px solid #fff; | |
border-bottom: 2px solid #fff; | |
position: absolute; | |
top: 3px; | |
left: 2px; | |
@include rotate(-45deg); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment