Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. /* Checkbox Hack */
  2.  
  3. input[type=checkbox] {
  4. position: absolute;
  5. top: -9999px;
  6. left: -9999px;
  7. }
  8. label {
  9. -webkit-appearance: push-button;
  10. -moz-appearance: button;
  11. display: inline-block;
  12. margin: 60px 0 10px 0;
  13. cursor: pointer;
  14. }
  15.  
  16. /* Default State */
  17. div {
  18. background: green;
  19. width: 400px;
  20. height: 100px;
  21. line-height: 100px;
  22. color: white;
  23. text-align: center;
  24. }
  25.  
  26. /* Toggled State */
  27. input[type=checkbox]:checked ~ .test{
  28. background: red;
  29. visibility:hidden;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement