DomButtonCheckboxOff.css 899 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* === Check Button (OFF) ==*/
  2. .mblDomButtonCheckboxOff {
  3. position: relative;
  4. width: 30px;
  5. height: 30px;
  6. border-width: 1px;
  7. border-style: outset;
  8. border-color: #A5A2A5;
  9. color: white;
  10. -webkit-border-radius: 3px;
  11. background-color: #D6D3D6;
  12. background: -webkit-gradient(linear, left top, left bottom, from(#EFF3EF), to(#BDBEBD));
  13. }
  14. .mblDomButtonCheckboxOff > div {
  15. position: absolute;
  16. top: 15px;
  17. left: 3px;
  18. width: 14px;
  19. height: 4px;
  20. margin: 0px;
  21. font-size: 1px;
  22. background-color: #BDBABD;
  23. border-bottom: 1px solid #8C8E8C;
  24. -webkit-border-radius: 2px;
  25. -webkit-transform: rotate(50deg);
  26. }
  27. .mblDomButtonCheckboxOff > div > div {
  28. position: absolute;
  29. top: -10px;
  30. left: 0px;
  31. width: 20px;
  32. height: 4px;
  33. margin: 0px;
  34. font-size: 1px;
  35. background-color: #BDBABD;
  36. border-bottom: none;
  37. border-top: 1px solid #8C8E8C;
  38. -webkit-border-radius: 2px;
  39. -webkit-transform: rotate(-100deg);
  40. }