jquery.switchButton.css 662 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .switch-button-label {
  2. float: left;
  3. font-size: 10pt;
  4. cursor: pointer;
  5. }
  6. .switch-button-label.off {
  7. color: #adadad;
  8. }
  9. .switch-button-label.on {
  10. color: #0088CC;
  11. }
  12. .switch-button-background {
  13. float: left;
  14. position: relative;
  15. background: #ccc;
  16. border: 1px solid #aaa;
  17. margin: 1px 10px;
  18. -webkit-border-radius: 4px;
  19. -moz-border-radius: 4px;
  20. border-radius: 4px;
  21. cursor: pointer;
  22. }
  23. .switch-button-button {
  24. position: absolute;
  25. left: -1px;
  26. top : -1px;
  27. background: #FAFAFA;
  28. border: 1px solid #aaa;
  29. -webkit-border-radius: 4px;
  30. -moz-border-radius: 4px;
  31. border-radius: 4px;
  32. }