Last active
April 1, 2019 09:49
-
-
Save gladchinda/7c49cfebed4bfc889576359d87b0f8ed to your computer and use it in GitHub Desktop.
This file contains 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
/* Styles for hiding the native radio button */ | |
input[type='radio'].check-custom { | |
position: absolute; | |
left: -10000px; | |
top: auto; | |
width: 1px; | |
height: 1px; | |
overflow: hidden; | |
} | |
/* Styles for the basic appearance of the custom radio button */ | |
input[type='radio'].check-custom ~ .check-toggle { | |
width: 1rem; | |
height: 1rem; | |
position: relative; | |
display: inline-block; | |
vertical-align: middle; | |
border: 1px solid #969696; | |
border-radius: 50%; | |
cursor: pointer; | |
} | |
/* Styles for the hover state appearance of the custom radio button */ | |
input[type='radio'].check-custom:hover ~ .check-toggle { | |
border: 2px solid #4a4a4a; | |
} | |
/* Styles for the focus state appearance of the custom radio button */ | |
input[type='radio'].check-custom:focus ~ .check-toggle { | |
border-color: #b0d5ff; | |
box-shadow: 0 0 0 2px rgba(23, 133, 255, 0.25); | |
} | |
/* Styles for the checked state appearance of the custom radio button */ | |
input[type='radio'].check-custom:checked ~ .check-toggle { | |
border: 2px solid #1785ff; | |
} | |
/* Styles for the checked state appearance of the custom radio button */ | |
input[type='radio'].check-custom:checked ~ .check-toggle::after { | |
content: ''; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
width: 40%; | |
height: 40%; | |
margin: auto; | |
position: absolute; | |
border-radius: 30%; | |
background: #1785ff; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment