Guest User

Untitled

a guest
May 24th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <style>
  2. .ivm-radio input {
  3. display:none;
  4. }
  5. .ivm-radio label {
  6. display:inline-block;
  7. }
  8.  
  9. .ivm-radio > label > span {
  10. display:block;
  11. display:inline-block;
  12. border: 1px solid #ddd;
  13. background: #eee;
  14. padding:5px 25px;
  15. cursor:pointer;
  16. min-width:90px;
  17. text-align:center;
  18. }
  19. .ivm-radio > label + label {
  20. margin-left:-5px;
  21. }
  22. .ivm-radio > label:first-child > span {
  23. border-top-left-radius: 10px;
  24. }
  25.  
  26. .ivm-radio input:checked + span {
  27. background: green;
  28. color: #fff;
  29. border-color: green;
  30. }
  31.  
  32. .ivm-radio input.ivm-disabled:checked + span {
  33. background: red;
  34. border-color: red;
  35. color: #fff;
  36. }
  37. </style>
  38.  
  39. <div class="ivm-radio">
  40. <p>Is this awesome?</p>
  41. <label>
  42. <input type="radio" name="switch" value="yes" checked />
  43. <span>Yes</span>
  44. </label>
  45. <label>
  46. <input class="ivm-disabled" type="radio" name="switch" value="no" />
  47. <span>No</span>
  48. </label>
  49. </div>
Add Comment
Please, Sign In to add comment