Skip to content

Instantly share code, notes, and snippets.

@trangsihung
Created December 4, 2017 07:23
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 trangsihung/6b04ccd3e26c13f4cfd8175a25656795 to your computer and use it in GitHub Desktop.
Save trangsihung/6b04ccd3e26c13f4cfd8175a25656795 to your computer and use it in GitHub Desktop.
css style
.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