style.css 459 B

12345678910111213141516171819202122232425262728293031
  1. .slider {
  2. position: relative;
  3. }
  4. .slider.disabled {
  5. opacity: 0.6;
  6. }
  7. .slider-thumb {
  8. width: 18px;
  9. height: 18px;
  10. background-color: white;
  11. border-radius: 50%;
  12. position: absolute;
  13. top: -9px;
  14. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.08);
  15. cursor: pointer;
  16. }
  17. .slider-thumb:focus {
  18. outline: none;
  19. }
  20. .slider-track {
  21. background-color: #528BFF;
  22. height: 2px;
  23. }
  24. .slider-track-1 {
  25. background-color: #E5E7EB;
  26. }