Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. input[type="checkbox"] {
  2. display:none;
  3. }
  4. input[type="checkbox"] + label span {
  5. display: inline-block;
  6. width: 167px;
  7. height: 30px;
  8. margin: 20px 0 0 0;
  9. vertical-align: middle;
  10. background: url('image.png') no-repeat 0 -103px;
  11. cursor: pointer;
  12. }
  13. input[type="checkbox"]:checked + label span {
  14. background: url('image.png') no-repeat 0 4px;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement