Skip to content

Instantly share code, notes, and snippets.

@mazipan
Last active March 30, 2017 11:40
Show Gist options
  • Save mazipan/b13a1add0b1983c6357092e360ed8f5f to your computer and use it in GitHub Desktop.
Save mazipan/b13a1add0b1983c6357092e360ed8f5f to your computer and use it in GitHub Desktop.
Simple styling radio scss
.radio
{
position: absolute;
left: -9999px;
& + label
{
position: relative;
display: inline-block;
padding: 2px 30px;
cursor: pointer;
&:before,
&:after
{
position: absolute;
top: 0;
content: '';
transition: all .2s;
border: 1px solid #000;
border-radius: 50%;
}
&:before
{
left: 3px;
width: 12px;
height: 12px;
margin-top: 3px;
}
&:after
{
left: 0;
width: 18px;
height: 18px;
}
}
&:checked
{
& + label:before
{
background-color: #000;
}
}
&:disabled
{
& + label
{
color: #CCC;
&:before,
&:after
{
border: 1px solid #CCC;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment