Advertisement
Guest User

Mac OS 8 1997 scrollbar

a guest
Feb 29th, 2024
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. ::-webkit-scrollbar {
  2. width: 16px;
  3. }
  4. ::-webkit-scrollbar-corner {
  5. border-top: 1px solid #000;
  6. border-left: 1px solid #000;
  7. box-shadow: inset 1px 1px 0 #fff;
  8. background: #cdcccd;
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. box-shadow: inset 1px 1px 0 #cdcdfc, inset -1px -1px 0 #6867c6;
  12. width: 14px;
  13. border: 1px solid #000;
  14. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917959746923941938/not_gonna_work.png?ex=65f109a2&is=65de94a2&hm=b477eccaed5fcb88af172d412d50b28ef6fff02ec337f03f3344df3f01c4fddf&);
  15. background-color: #9B9BF9;
  16. background-repeat: no-repeat;
  17. background-position: center;
  18. }
  19. ::-webkit-scrollbar-thumb:horizontal{
  20. box-shadow: inset 1px 1px 0 #cdcdfc, inset -1px -1px 0 #6867c6;
  21. width: 14px;
  22. border: 1px solid #000;
  23. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917968280742948924/horizontal_scrollbar_bg.png?ex=65f11195&is=65de9c95&hm=3d07d063427903ef68e2ab6921f3657d475a721bff0e9a10f7081ec1490d0a2c&);
  24. background-color: #9B9BF9;
  25. background-repeat: no-repeat;
  26. background-position: center;
  27. }
  28. ::-webkit-scrollbar-track {
  29. background-color: #aaaaab;
  30. border: 1px solid #000;
  31. }
  32. ::-webkit-scrollbar-button:vertical:increment {
  33. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917964624161308743/increment_1.png?ex=65f10e2d&is=65de992d&hm=19627b589fa82404eff1571aec57d7c507b68143e61a83ec61dbec6a553cd305&);
  34. background-color: #DEDEDE;
  35. background-repeat: no-repeat;
  36. background-position: center;
  37. width: 16px;
  38. height: 16px;
  39. border-left: 1px solid black;
  40. border-right: 1px solid black;
  41. }
  42. ::-webkit-scrollbar-button:vertical:decrement {
  43. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917964623850917978/decrement_1.png?ex=65f10e2d&is=65de992d&hm=5d458a7edf43cd6c23e82c5eb4c1443183c1b580bd77e1bf77654b93ab9e8e7e&);
  44. background-color: #DEDEDE;
  45. background-repeat: no-repeat;
  46. background-position: center;
  47. border-top: 1px solid black;
  48. border-right: 1px solid black;
  49. border-left: 1px solid black;
  50. width: 16px;
  51. height: 16px;
  52. }
  53. ::-webkit-scrollbar-button:horizontal:decrement
  54. {
  55. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917966460217872434/horizantal_decremnt.png?ex=65f10fe3&is=65de9ae3&hm=8e00f3b359718ccc10ca61176ee7486a601ab8c62faa3b8f85f5171eaf30c402&);
  56. background-color: #DEDEDE;
  57. background-repeat: no-repeat;
  58. background-position: center;
  59. border-top: 1px solid black;
  60. border-left: 1px solid black;
  61. border-bottom: 1px solid black;
  62. width: 16px;
  63. height: 16px;
  64. }
  65. ::-webkit-scrollbar-button:horizontal:increment
  66. {
  67. background-image: url(https://cdn.discordapp.com/attachments/887921355947933726/917966460477906944/horizantal_increment.png?ex=65f10fe3&is=65de9ae3&hm=777e539b9fbf85a8eea539bb756d4520eca8a1c85f5cd45a8d09af44114595ed&);
  68. background-color: #DEDEDE;
  69. background-repeat: no-repeat;
  70. background-position: center;
  71. border-top: 1px solid black;
  72. border-bottom: 1px solid black;
  73. width: 16px;
  74. height: 16px;
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement