Advertisement
Guest User

Untitled

a guest
Jan 12th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1. input[type=radio] {
  2.     visibility: hidden;
  3. }
  4.  
  5. /**
  6.  * frnakRadio Buttons!
  7.  */
  8. .frnakRadio {
  9.     width: 24px;
  10.     height: 24px;
  11.     background: #ddd;
  12.     margin: 10px 10px;
  13.  
  14.     border-radius: 100%;
  15.     position: absolute;
  16.     -webkit-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  17.     -moz-box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  18.     box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
  19. }
  20.  
  21. /**
  22.  * Create the checkbox button
  23.  */
  24. .frnakRadio label {
  25.     display: inline-block;
  26.     width: 18px;
  27.     height: 18px;
  28.     border-radius: 100px;
  29.  
  30.     -webkit-transition: all .5s ease;
  31.     -moz-transition: all .5s ease;
  32.     -o-transition: all .5s ease;
  33.     -ms-transition: all .5s ease;
  34.     transition: all .5s ease;
  35.     cursor: pointer;
  36.     position: relative;
  37.     top: 3px;
  38.     left: 3px;
  39.     z-index: 1;
  40.  
  41.     background: #333;
  42.  
  43.     -webkit-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
  44.     -moz-box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
  45.     box-shadow:inset 0px 1px 3px rgba(0,0,0,0.5);
  46. }
  47.  
  48. /**
  49.  * Create the checked state
  50.  */
  51. .frnakRadio input[type=radio]:checked + label {
  52.     background: #26ca28;
  53. }
  54.  
  55. .checkname
  56. {
  57.     display: block;
  58.     margin: 10px 35px;
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement