Guest User

Untitled

a guest
Dec 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. label {
  2. font-weight: lighter;
  3. cursor:pointer;
  4. }
  5.  
  6. input[type="radio"] {
  7. display:none;
  8. }
  9.  
  10. input[type="radio"] + label {
  11. background: url('../img/check-a.png') left 1px no-repeat;
  12. padding-left: 10px;
  13. padding-bottom: 5px;
  14. }
  15.  
  16. input[type="radio"]:checked + label {
  17. background-image: url('../img/check-a.png');
  18. }
  19.  
  20. <form onSubmit="submitValue()" id="comp" name="comp" action="https://registration.disneyinternational.com/login.htm" method="get">
  21. <div class = "row form-row padding-top-20">
  22. <div class = "col-md-3 text-center wrapper-q1">
  23. <p>
  24. <input class="question1" id = "schurk1" type="radio" name="q1" value="Parade">
  25. <br />
  26. <label class = "pointer label3" for = "schurk1">
  27. De Boze Stiefmoeder
  28. </label>
  29. </p>
  30. </div>
  31. <div class = "col-md-3 text-center wrapper-q1">
  32. <p>
  33. <input class="question1" id = "schurk2" type="radio" name="q1" value="Parade">
  34. <br />
  35. <label class = "pointer label3" for = "schurk2">
  36. Cruella
  37. </label>
  38. </p>
  39. </div>
  40. <div class = "col-md-3 text-center wrapper-q1">
  41. <p>
  42. <input class="question1" id = "schurk3" type="radio" name="q1" value="Parade">
  43. <br />
  44. <label class = "pointer label3" for = "schurk3">
  45. Maleficent
  46. </label>
  47. </p>
  48. </div>
  49. <div class = "col-md-3 text-center wrapper-q1">
  50. <p>
  51. <input class="question1" id = "schurk4" type="radio" name="q1" value="Parade">
  52. <br />
  53. <label class = "pointer label3" for = "schurk4">
  54. Jafar
  55. </label>
  56. </p>
  57. </div>
  58. </div>
  59. </form>
Add Comment
Please, Sign In to add comment