Created
May 24, 2020 12:02
-
-
Save sudikrt/6559c4054e70c6b6e56fe1d1e3582de0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| .radio-item { | |
| display: inline-block; | |
| position: relative; | |
| padding: 0 6px; | |
| margin: 10px 0 0; | |
| } | |
| .radio-item input[type='radio'] { | |
| display: none; | |
| } | |
| .radio-item label { | |
| color: #666; | |
| font-weight: normal; | |
| } | |
| .radio-item label:before { | |
| content: " "; | |
| display: inline-block; | |
| position: relative; | |
| top: 5px; | |
| margin: 0 5px 0 0; | |
| width: 20px; | |
| height: 20px; | |
| border-radius: 11px; | |
| border: 2px solid #004c97; | |
| background-color: transparent; | |
| } | |
| .radio-item input[type=radio]:checked + label:after { | |
| border-radius: 11px; | |
| width: 16px; | |
| height: 16px; | |
| position: absolute; | |
| top: 9px; | |
| left: 10px; | |
| content: " "; | |
| display: block; | |
| background: #004c97; | |
| } | |
| .radio-item input[type=radio]:checked + label { | |
| color: red; | |
| } |
This file contains hidden or 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
| <html> | |
| <head> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="script.js"></script> | |
| </head> | |
| <body> | |
| <div class="radio-item"> | |
| <input type="radio" id="ritema" name="ritem" value="ropt1"> | |
| <label for="ritema">Option 1</label> | |
| </div> | |
| <div class="radio-item"> | |
| <input type="radio" id="ritemb" name="ritem" value="ropt2"> | |
| <label for="ritemb">Option 2</label> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment