Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.93 KB | None | 0 0
  1. input[type='radio']:not(old) {
  2.   width: 2em;
  3.   margin: 0;
  4.   padding: 0;
  5.   font-size: 1em;
  6.   opacity: 0;
  7. }
  8. input[type='radio']:not(old) + label {
  9.   display: inline-block;
  10.   margin-left: -41px;
  11.   margin-right: 6px;
  12. }
  13.  
  14. // condition non checked
  15. input[type='radio']:not(old) + label > span {
  16.   display: inline-block;
  17.   width: 15.67px;
  18.   max-width: 15.67px;
  19.   max-height: 16px;
  20.   height: 16px;
  21.   margin: 4px 8px;
  22.   border: 1.5px solid black;
  23.   border-radius: 100%;
  24.   vertical-align: bottom;
  25.   background: #fff;
  26. }
  27.  
  28. // condition checked
  29. input[type='radio']:not(old):checked + label > span {
  30.   background-image: red;
  31.   border: 1.5px solid red;
  32. }
  33.  
  34. // bulatan after click
  35. input[type='radio']:not(old):checked + label > span > span {
  36.   display: block;
  37.   width: 5.9px;
  38.   max-width: 5.9px;
  39.   height: 6px;
  40.   max-height: 6.9px;
  41.   margin: 3px 3px;
  42.   border: 1.5px solid red;
  43.   border-radius: 100%;
  44.   background-color: red;
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement