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.

slider.scss 448B

12345678910111213141516171819202122232425
  1. .dc-slider {
  2. position: absolute;
  3. left: 50%;
  4. top: 0px;
  5. background-color: #d3d3d3;
  6. width: 5px;
  7. height: 100%;
  8. z-index: 9999;
  9. .splitter {
  10. position: absolute;
  11. left: -21px;
  12. top: calc(50% - 21px);
  13. width: 42px;
  14. height: 42px;
  15. background: #fff;
  16. border-radius: 50%;
  17. text-align: center;
  18. line-height: 58px;
  19. padding: 2px;
  20. border: 1px solid lightgrey;
  21. &:hover {
  22. cursor: ew-resize;
  23. }
  24. }
  25. }