Skip to content

Instantly share code, notes, and snippets.

@Ginnw2
Created October 10, 2019 11:26
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 Ginnw2/69a00de1d116eb3b5402a04023dc50c5 to your computer and use it in GitHub Desktop.
Save Ginnw2/69a00de1d116eb3b5402a04023dc50c5 to your computer and use it in GitHub Desktop.
input[type=checkbox] {
display: none;
&+label:before{
content: "";
width: 14px;
height: 14px;
border-radius: 14px;
border: 1px solid #000;
display: block;
float: left;
margin-right: 5px;
margin-top: 3px;
}
&:checked+label{
&:after{
content: "";
width: 8px;
height: 8px;
border-radius: 8px;
background: #000;
display: block;
position: relative;
top: 6px;
right: 16px;
float: left;
margin-right: -16px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment