Skip to content

Instantly share code, notes, and snippets.

@brendonexus
Created November 5, 2020 12:42
Show Gist options
  • Save brendonexus/015401452559c179fdedaacc0b278854 to your computer and use it in GitHub Desktop.
Save brendonexus/015401452559c179fdedaacc0b278854 to your computer and use it in GitHub Desktop.
Turn checkboxes to clickable buttons with active styling
[type="radio"] {
+ {
span {
position: relative;
cursor: pointer;
background-color: #F7FBFF;
border: 2px solid #F7FBFF;
padding: 15px 30px;
border-radius: 100px;
display: inline-block;
margin-bottom: 15px !important;
&:before {
display: none;
}
}
}
opacity: 0;
position: absolute;
background-color: #F7FBFF;
margin-bottom: 15px !important;
border-radius: 100px;
padding: 15px 30px;
&:checked {
+ {
span {
display: block;
border: 2px solid #EA6024;
background-color: #FFFAF8;
color: #EA6024;
border-radius: 100px;
padding: 15px 30px;
&:before {
display: none;
}
}
}
}
}
[type="checkbox"] {
+ {
span {
position: relative;
cursor: pointer;
background-color: #F7FBFF;
border: 2px solid #F7FBFF;
padding: 15px 30px;
border-radius: 100px;
display: inline-block;
margin-bottom: 15px !important;
&:before {
display: none;
}
}
}
opacity: 0;
position: absolute;
background-color: #F7FBFF;
margin-bottom: 15px !important;
border-radius: 100px;
padding: 15px 30px;
&:checked {
+ {
span {
display: block;
border: 2px solid #EA6024;
background-color: #FFFAF8;
color: #EA6024;
border-radius: 100px;
padding: 15px 30px;
&:before {
display: none;
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment