Advertisement
ruesha

scrollbar

Jun 26th, 2023
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <style>
  2.  
  3. ::-webkit-scrollbar {
  4. width: 14px;
  5. height: 10px;
  6. }
  7.  
  8. ::-webkit-scrollbar-thumb {
  9. background: linear-gradient(90deg, rgba(238,238,238,1) 38%, rgba(206,206,206,1) 62%);
  10. border: 1.5px solid #888888;
  11. border-radius: 5px;
  12. }
  13.  
  14. ::-webkit-scrollbar-track {
  15. background: linear-gradient(90deg, rgba(230,230,230,1) 6%, rgba(240,240,240,1) 18%);
  16. }
  17.  
  18. ::-webkit-scrollbar-button {
  19. display: block;
  20. width: 14px;
  21. height: 16px;
  22. }
  23.  
  24. ::-webkit-scrollbar-button:vertical:start:decrement {
  25. background: white;
  26. background-image: url("https://dl.dropbox.com/s/vtnpkuealr2f7u4/whc8iy3_d.png");
  27. border: 1.5px solid #888888;
  28. border-radius: 5px;
  29. }
  30.  
  31. ::-webkit-scrollbar-button:vertical:start:increment {
  32. display: none;
  33. }
  34.  
  35. ::-webkit-scrollbar-button:vertical:end:decrement {
  36. display: none;
  37. }
  38.  
  39. ::-webkit-scrollbar-button:vertical:end:increment {
  40. background: white;
  41. background-image: url("https://dl.dropbox.com/s/vtnpkuealr2f7u4/whc8iy3_d.png");
  42. border: 1.5px solid #888888;
  43. border-radius: 5px;
  44. }
  45.  
  46. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement