Advertisement
GIFCITY

mac84 scrollbar

Jan 15th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.76 KB | None | 0 0
  1. <style>
  2. ::-webkit-scrollbar {
  3. width: 16px;
  4. }
  5.  
  6. ::-webkit-scrollbar-corner {
  7. border-top: 1px solid #000;
  8. border-left: 1px solid #000;
  9. }
  10.  
  11. ::-webkit-scrollbar-thumb {
  12. background-color: #fff;
  13. width: 14px;
  14. border: 1px solid #000;
  15. }
  16.  
  17. ::-webkit-scrollbar-track {
  18. background: radial-gradient(circle at 0.5px 0.5px,#000 0.5px,transparent 0) 0/4px 2px repeat,radial-gradient(circle at 2.5px 1.5px,#000 0.5px,transparent 0) 0/4px 2px repeat,#fff;
  19. border: 1px solid black;
  20. }
  21.  
  22. ::-webkit-scrollbar-button:vertical:increment {
  23. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917954568594276402/vertical_increment.png);
  24. width: 16px;
  25. height: 16px;
  26. border-left: 1px solid black;
  27. border-right: 1px solid black;
  28. }
  29.  
  30. ::-webkit-scrollbar-button:vertical:decrement {
  31. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917954568313270342/vertical_decrement.png);
  32. border-top: 1px solid black;
  33. border-left: 1px solid black;
  34. border-right: 1px solid black;
  35. width: 16px;
  36. height: 16px;
  37. }
  38.  
  39. ::-webkit-scrollbar-button:horizontal:decrement {
  40. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/918018641235173436/hori_decrement.png);
  41. background-color: #DEDEDE;
  42. background-repeat: no-repeat;
  43. background-position: center;
  44. border-top: 1px solid black;
  45. border-left: 1px solid black;
  46. border-bottom: 1px solid black;
  47. width: 16px;
  48. height: 16px;
  49. }
  50.  
  51. ::-webkit-scrollbar-button:horizontal:increment {
  52. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/918018641537150976/hori_increm.png);
  53. background-color: #DEDEDE;
  54. background-repeat: no-repeat;
  55. background-position: center;
  56. border-top: 1px solid black;
  57. border-bottom: 1px solid black;
  58. width: 16px;
  59. height: 16px;
  60. }
  61. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement