Advertisement
Guest User

Scale rate radio button

a guest
Feb 21st, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.78 KB | None | 0 0
  1. .form-radio {
  2.     width : 25px!important;
  3.     height : 25px!important;
  4.     border-radius : 100%;
  5.     bottom : 1px;
  6.     height : 18px;
  7.     position : relative;
  8.     vertical-align : middle;
  9.     -webkit-appearance : none;
  10.     -webkit-user-select : none;
  11.     border : 2px solid #2E6DA4 !important;
  12.     border-radius : 23px;
  13.     color : #444;
  14.     font : inherit;
  15.     margin : 0 1px 0 0;
  16.     outline : none !important;
  17.     text-shadow : 0 1px 0 #F0F0F0;
  18.     cursor : pointer;
  19. }
  20.  
  21. .form-radio:checked:before{
  22.     background-color : #2E6DA4;
  23.     border-radius : 50px!important;
  24.     border : 1px solid #2E6DA4 !important;
  25.     bottom : 3px;
  26.     content : '';
  27.     display : block;
  28.     left : 5px;
  29.     position : absolute;
  30.     top : 5px;
  31.     height : 10px;
  32.     width : 10px;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement