Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. // -webkit-scrollbar
  2. ::-webkit-scrollbar {
  3. height: 0.2rem;
  4. width: 0.2rem;
  5. }
  6.  
  7. ::-webkit-scrollbar-button {
  8. height: 0;
  9. width: 0;
  10. }
  11.  
  12. ::-webkit-scrollbar-thumb {
  13. border-radius: 0.2rem;
  14. }
  15.  
  16. // -webkit-scrollbar-light
  17. ::-webkit-scrollbar-thumb {
  18. background: rgb(217, 228, 234);
  19. }
  20.  
  21. ::-webkit-scrollbar-thumb:hover {
  22. background: #8dc3d8;
  23. }
  24.  
  25. ::-webkit-scrollbar-thumb:active {
  26. background: #007cbb;
  27. }
  28.  
  29. ::-webkit-scrollbar-track {
  30. background: rgb(250, 250, 250);
  31. }
  32.  
  33. ::-webkit-scrollbar-track:hover {
  34. background: rgb(250, 250, 250);
  35. }
  36.  
  37. ::-webkit-scrollbar-track:active {
  38. background: rgb(250, 250, 250);
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement