Advertisement
dollcrds

old web scrollbar

Mar 12th, 2024
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <style>
  2. ::-webkit-scrollbar {
  3. width: 16px
  4. }
  5. ::-webkit-scrollbar-corner {
  6. background: #eee
  7. }
  8.  
  9. ::-webkit-scrollbar-track:vertical {
  10. background: linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  11. }
  12.  
  13. ::-webkit-scrollbar-thumb {
  14. border: 1.5px solid #888;
  15. border-radius: 3px;
  16. box-shadow: inset 0 -1px 1px #fff, inset 0 1px 1px #fff;
  17. background-color: #eee;
  18. }
  19. ::-webkit-scrollbar-thumb:vertical {
  20. background: url("https://dl.dropbox.com/s/9a29qbkza3gmgl7/scroll1.png"), linear-gradient(90deg, #eee 45%, #ddd 0, #bbb);
  21. background-repeat: no-repeat;
  22. background-size: 65% auto, cover;
  23. background-position: center;
  24. }
  25.  
  26. ::-webkit-scrollbar-button:vertical:end:increment,
  27. ::-webkit-scrollbar-button:vertical:start:decrement {
  28. display: block
  29. }
  30.  
  31. ::-webkit-scrollbar-button:vertical {
  32. height: 15px
  33. }
  34. ::-webkit-scrollbar-button:vertical:start:decrement {
  35. background: white;
  36. background: url("https://dl.dropbox.com/s/n9ji42h9hdgdtpc/scroll3.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  37. background-repeat: no-repeat;
  38. background-position: center;
  39. -moz-background-size: 100% auto, cover;
  40. -webkit-background-size: 100% auto, cover;
  41. -o-background-size: 100% auto, cover;
  42. background-size: 100% auto, cover;
  43. background-position: center;
  44. border-radius: 0 3px 0 0;
  45. }
  46.  
  47. ::-webkit-scrollbar-button:vertical:start:increment {
  48. display: none;
  49. }
  50. ::-webkit-scrollbar-button:vertical:end:decrement {
  51. display: none;
  52. }
  53.  
  54. ::-webkit-scrollbar-button:vertical:end:increment {
  55. background: white;
  56. background: url("https://dl.dropbox.com/s/cdcco6pih7n1lae/scroll4.png"), linear-gradient(90deg, #e5e5e5, #f0f0f0 20%);
  57. background-repeat: no-repeat;
  58. background-position: center;
  59. -moz-background-size: 100% auto, cover;
  60. -webkit-background-size: 100% auto, cover;
  61. -o-background-size: 100% auto, cover;
  62. background-size: 100% auto, cover;
  63. background-position: center;
  64. border-radius: 0 0 3px 0;
  65. }
  66. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement