Advertisement
katya_resources

custom scrollbar

May 17th, 2022 (edited)
479
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. <style>
  2. /* width */
  3. ::-webkit-scrollbar {
  4. width: 6px;
  5. }
  6. /* track */
  7. ::-webkit-scrollbar-track {
  8. background: #FFFFFF;
  9. }
  10. /* handle */
  11. ::-webkit-scrollbar-thumb {
  12. background: #5A2E98;
  13. border-radius: 25px;
  14. }
  15. /* handle hover */
  16. ::-webkit-scrollbar-thumb:hover {
  17. background: #2D2040;
  18. border-radius: 25px;
  19. }
  20. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement