Udoro

custom browser scrollbar

Aug 19th, 2021 (edited)
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /* width */
  2. ::-webkit-scrollbar {
  3. width: 5px;
  4. }
  5.  
  6. /* Track */
  7. ::-webkit-scrollbar-track {
  8. background: black;
  9. }
  10.  
  11. /* Handle */
  12. ::-webkit-scrollbar-thumb {
  13. background: #900;
  14.  
  15. }
  16.  
  17. /* Handle on hover */
  18. ::-webkit-scrollbar-thumb:hover {
  19. background: #555;
  20. }
  21.  
  22. /* firefox */
  23.  
  24. html {
  25. scrollbar-width: thin;
  26. scrollbar-color: #900 #555;
  27. }
Add Comment
Please, Sign In to add comment