checkbox.css 518 B

12345678910111213141516171819202122232425262728293031
  1. .checkbox {
  2. position: relative;
  3. border: 2px solid #00bbee;
  4. -moz-border-radius: 4px 4px 4px 4px;
  5. -webkit-border-radius: 4px 4px 4px 4px;
  6. border-radius: 4px 4px 4px 4px;
  7. }
  8. .checkbox-checked {
  9. border: 0;
  10. background: #00bbee;
  11. }
  12. .checkbox-inner {
  13. position: absolute;
  14. left: 0;
  15. top: 0;
  16. width: 100%;
  17. height: 100%;
  18. }
  19. .checkbox path {
  20. stroke-width: 2px;
  21. }
  22. .checkbox-disabled {
  23. opacity: 0.6;
  24. }
  25. .checkbox-value {
  26. position: absolute;
  27. overflow: hidden;
  28. width: 1px;
  29. height: 1px;
  30. left: -999px;
  31. }