skzcode

'84 mac scrollbar

Dec 6th, 2023 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. <style>
  2.  
  3. #mac84 {
  4. height:100px;
  5. width:150px;
  6. padding:10px;
  7. border:3px;
  8. border-style:solid;
  9. border-color:#000;
  10. overflow:auto;
  11. }
  12.  
  13. #mac84::-webkit-scrollbar {
  14. width: 16px;
  15. }
  16. #mac84::-webkit-scrollbar-corner {
  17. border-top: 1px solid #000;
  18. border-left: 1px solid #000;
  19. }
  20. #mac84::-webkit-scrollbar-thumb {
  21. background-color: #fff;
  22. width: 14px;
  23. border: 1px solid #000;
  24. }
  25. #mac84::-webkit-scrollbar-track {
  26. 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;
  27. border: 1px solid black;
  28. }
  29. #mac84::-webkit-scrollbar-button:vertical:increment {
  30. background-image: url(https://files.catbox.moe/30voeg.png);
  31. width: 16px;
  32. height: 16px;
  33. border-left: 1px solid black;
  34. border-right: 1px solid black;
  35. }
  36. #mac84::-webkit-scrollbar-button:vertical:decrement {
  37. background-image: url(https://files.catbox.moe/vakms2.png);
  38. border-top: 1px solid black;
  39. border-left: 1px solid black;
  40. border-right: 1px solid black;
  41. width: 16px;
  42. height: 16px;
  43. }
  44. #mac84::-webkit-scrollbar-button:horizontal:decrement
  45. {
  46. background-image: url(https://files.catbox.moe/9282qc.png);
  47. background-color: #DEDEDE;
  48. background-repeat: no-repeat;
  49. background-position: center;
  50. border-top: 1px solid black;
  51. border-left: 1px solid black;
  52. border-bottom: 1px solid black;
  53. width: 16px;
  54. height: 16px;
  55. }
  56. #mac84::-webkit-scrollbar-button:horizontal:increment
  57. {
  58. background-image: url(https://files.catbox.moe/ws6pjj.png);
  59. background-color: #DEDEDE;
  60. background-repeat: no-repeat;
  61. background-position: center;
  62. border-top: 1px solid black;
  63. border-bottom: 1px solid black;
  64. width: 16px;
  65. height: 16px;
  66. }
  67.  
  68. </style>
  69.  
  70. <div id="mac84">
  71. '84 mac scrollbar
  72. <br>
  73. <br>
  74. 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
  75. </div>
Add Comment
Please, Sign In to add comment