Advertisement
B1KMusic

[Sprite Test] sprite.css

Mar 5th, 2015
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.51 KB | None | 0 0
  1. *{
  2.   margin:0;
  3.   padding:0;
  4. }
  5. .check{
  6.   width: 24px;
  7.   height: 24px;
  8.   display: inline-block;
  9.   cursor: pointer;
  10.   position: relative;
  11.   top: 7px;
  12. }
  13. .check.unchecked{
  14.   background: url('img/checkbox.png') 0 0;
  15. }
  16. .check.checked{
  17.   background: url('img/checkbox.png') -24px 0;
  18. }
  19.  
  20. .button{
  21.   width: 96px;
  22.   height: 24px;
  23.   display: inline-block;
  24.   cursor: pointer;
  25. }
  26. .button.up{
  27.   background: url('img/report_btn.png') 0 0;
  28. }
  29. .button.hover{
  30.   background: url('img/report_btn.png') 0 -24px;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement