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
1.0 KiB

  1. /* switch button */
  2. .onoffswitch {
  3. position: relative; width: 46px;
  4. -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
  5. }
  6. .onoffswitch-checkbox {
  7. display: none;
  8. }
  9. .onoffswitch-label {
  10. display: block; overflow: hidden; cursor: pointer;
  11. height: 20px; padding: 0; line-height: 20px;
  12. border: 2px solid #FFFFFF; border-radius: 20px;
  13. background-color: #9E9E9E;
  14. transition: background-color 0.3s ease-in;
  15. margin-bottom: 0;
  16. }
  17. .onoffswitch-label:before {
  18. content: "";
  19. display: block; width: 20px; margin: 0px;
  20. background: #FFFFFF;
  21. position: absolute; top: 0; bottom: 0;
  22. right: 24px;
  23. border: 2px solid #FFFFFF; border-radius: 20px;
  24. transition: all 0.3s ease-in 0s;
  25. }
  26. .onoffswitch-checkbox:checked + .onoffswitch-label {
  27. background-color: #FF00B9;
  28. }
  29. .onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before {
  30. border-color: #FF00B9;
  31. }
  32. .onoffswitch-checkbox:checked + .onoffswitch-label:before {
  33. right: 0px;
  34. }