Advertisement
LittleFox94

CSS Material Design Radio Buttons

May 20th, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.40 KB | None | 0 0
  1. input[type=radio] {
  2.     border: 0.13em solid rgba(0, 0, 0, 0.3);
  3.     border-radius: 0.8em;
  4.     appearance: none;
  5.     width: 1em;
  6.     height: 1em;
  7.     margin-left: 0.5em;
  8. }
  9.  
  10. input[type=radio]:focus {
  11.     outline: none;
  12. }
  13.  
  14. input[type=radio]:checked {
  15.     box-shadow: 0px 0px 0px 0.1em white inset;
  16.     border: 0.13em solid rgba(52, 106, 220, 0.87);
  17.     background: rgba(52, 106, 220, 0.87);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement