diff --git a/index.html b/index.html index 02ba654..58a7a7d 100644 --- a/index.html +++ b/index.html @@ -23,29 +23,73 @@ { width:100%; } + label + { + width:100%; + } + input[type='radio'] + { + display:block; + position:relative; + appearance: none; + } + input[type='radio']::before + { + content: " "; + display: block; + position: relative; + width: 17px; + height: 17px; + border: 2px solid #000; + border-radius: 20px; + } + input[type='radio']:checked::after + { + content: " "; + display: block; + position: absolute; + width: 11px; + height: 11px; + top: 5px; + left: 5px; + border-radius: 20px; + background: #000; + }