skzcode

old scrollbar

Dec 14th, 2023 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. <style>
  2. #old {
  3. height:100px;
  4. width:150px;
  5. padding:10px;
  6. border:3px;
  7. border-style:solid;
  8. border-color:#000;
  9. overflow:auto;
  10. }
  11.  
  12. #old::-webkit-scrollbar {
  13. width: 16px;
  14. }
  15. #old::-webkit-scrollbar-corner {
  16. border-top: 1px solid #000;
  17. border-left: 1px solid #000;
  18. }
  19. #old::-webkit-scrollbar-thumb {
  20. width: 14px;
  21. box-shadow: inset -1px -1px 0 #343463, inset 1px 1px 0 #cdcdfc;
  22. background-image: url(https://files.catbox.moe/0lmsy9.png);
  23. background-color: #AAAAAB;
  24. background-repeat: no-repeat;
  25. background-position: center;
  26. }
  27. #old::-webkit-scrollbar-thumb:horizontal {
  28. width: 14px;
  29. box-shadow: inset -1px -1px 0 #343463, inset 1px 1px 0 #cdcdfc;
  30. background-image: url(https://files.catbox.moe/mwwjg4.png);
  31. background-color: #AAAAAB;
  32. background-repeat: no-repeat;
  33. background-position: center;
  34. }
  35. #old::-webkit-scrollbar-track {
  36. background: radial-gradient(circle at 0.5px 0.5px,#787877 0.5px,transparent 0) 0/4px 2px repeat,radial-gradient(circle at 2.5px 1.5px,#787877 0.5px,transparent 0) 0/4px 2px repeat,#dedede;
  37. border-top: 1px solid #DEDEDE;
  38. border-left: 1px solid black;
  39. border-right: 1px solid black;
  40. border-bottom: 1px solid #DEDEDE;
  41. }
  42. #old::-webkit-scrollbar-track:horizontal {
  43. background: radial-gradient(circle at 0.5px 0.5px,#787877 0.5px,transparent 0) 0/4px 2px repeat,radial-gradient(circle at 2.5px 1.5px,#787877 0.5px,transparent 0) 0/4px 2px repeat,#dedede;
  44. border-top: 1px solid black;
  45. border-left: 1px solid #DEDEDE;
  46. border-right: 1px solid #DEDEDE;
  47. border-bottom: 1px solid black;
  48. }
  49. #old::-webkit-scrollbar-button:vertical:increment {
  50. background-image: url(https://files.catbox.moe/n48kdq.png);
  51. background-color: #DEDEDE;
  52. background-repeat: no-repeat;
  53. background-position: center;
  54. width: 16px;
  55. height: 16px;
  56. border-left: 1px solid black;
  57. border-top: 1px solid black;
  58. border-right: 1px solid black;
  59. }
  60. #old::-webkit-scrollbar-button:vertical:decrement {
  61. background-image: url(https://files.catbox.moe/hobxmd.png);
  62. background-color: #DEDEDE;
  63. background-repeat: no-repeat;
  64. background-position: center;
  65. border-top: 1px solid black;
  66. border-left: 1px solid black;
  67. border-right: 1px solid black;
  68. border-bottom: 1px solid black;
  69. width: 16px;
  70. height: 16px;
  71. }
  72. #old::-webkit-scrollbar-button:horizontal:decrement
  73. {
  74. background-image: url(https://files.catbox.moe/qerpgk.png);
  75. background-color: #DEDEDE;
  76. background-repeat: no-repeat;
  77. background-position: center;
  78. border-top: 1px solid black;
  79. border-left: 1px solid black;
  80. border-right: 1px solid black;
  81. border-bottom: 1px solid black;
  82. width: 16px;
  83. height: 16px;
  84. }
  85. #old::-webkit-scrollbar-button:horizontal:increment
  86. {
  87. background-image: url(https://files.catbox.moe/ik9ayh.png);
  88. background-color: #DEDEDE;
  89. background-repeat: no-repeat;
  90. background-position: center;
  91. border-top: 1px solid black;
  92. border-left: 1px solid black;
  93. border-bottom: 1px solid black;
  94. width: 16px;
  95. height: 16px;
  96. }
  97. </style>
  98.  
  99. <div id="old">
  100. idk what this is
  101. <br>
  102. <br>
  103. text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  104. </div>
Add Comment
Please, Sign In to add comment