Advertisement
izuemis

louv crd scrollbar

Mar 13th, 2023 (edited)
1,598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.42 KB | None | 0 0
  1. <!-- FINDERQIRL -->
  2.  
  3. <style>
  4.  
  5. ::-webkit-scrollbar {
  6. width: 5px; /* width of the scrollbar */
  7. }
  8.  
  9. ::-webkit-scrollbar-track {
  10. background: transparent; /* background is optional */
  11. }
  12.  
  13. ::-webkit-scrollbar-thumb {
  14. border-radius: 10px;
  15. background: #F7A6A6; /* color of the scrollbar */
  16. box-shadow: inset 0 2px 2px -2px white, inset 2px 0 2px -2px gray, inset -2px 0 2px -2px gray, inset 0 -2px 2px -2px gray;
  17. }
  18.  
  19. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement