solielios

Gradient scrollbar ♡

Sep 19th, 2021 (edited)
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <style>
  2. #scroll {
  3. }
  4. .scroll {
  5. }
  6.  
  7. /* width */
  8. ::-webkit-scrollbar {
  9. width: 10px;
  10. }
  11.  
  12. /* Track */
  13. ::-webkit-scrollbar-track {
  14. border-radius: 10px;
  15. }
  16.  
  17. /* Handle */
  18. ::-webkit-scrollbar-thumb {
  19. background: linear-gradient(180deg, rgba(246,206,206,1) 0%, rgba(206,216,246,1) 100%);
  20. border-radius: 10px;
  21. }
  22.  
  23. /* Handle on hover */
  24. ::-webkit-scrollbar-thumb:hover {
  25. background: linear-gradient(180deg, rgba(246,206,206,1) 0%, rgba(255,250,177,1) 0%, rgba(206,216,246,1) 100%);
  26. }
  27. </style>
Add Comment
Please, Sign In to add comment