style.css 420 B

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