You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
666 B

2 years ago
  1. /*
  2. *
  3. * Main stylesheet for Switchery.
  4. * http://abpetkov.github.io/switchery/
  5. *
  6. */
  7. .switchery {
  8. background-color: #fff;
  9. border: 1px solid #dfdfdf;
  10. border-radius: 20px;
  11. cursor: pointer;
  12. display: inline-block;
  13. height: 30px;
  14. position: relative;
  15. vertical-align: middle;
  16. width: 50px;
  17. -moz-user-select: none;
  18. -khtml-user-select: none;
  19. -webkit-user-select: none;
  20. -ms-user-select: none;
  21. user-select: none;
  22. box-sizing: content-box;
  23. background-clip: content-box;
  24. }
  25. .switchery > small {
  26. background: #fff;
  27. border-radius: 100%;
  28. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  29. height: 30px;
  30. position: absolute;
  31. top: 0;
  32. width: 30px;
  33. }