ruesha

scrollbar 08/18

Aug 18th, 2024
509
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <style>
  2. #scroll {
  3. }
  4. .scroll {
  5. }
  6. /* width */
  7. ::-webkit-scrollbar {
  8. width: 4px;
  9. height: 4px;
  10. }
  11. /* Track */
  12. ::-webkit-scrollbar-track {
  13. border-radius: 8px;
  14. background: #181728;
  15. opacity: 0.5;
  16. }
  17. /* Handle */
  18. ::-webkit-scrollbar-thumb {
  19. background: #ffd9ed;
  20. border-radius: 8px;
  21. opacity: 1.0;
  22. }
  23. /* Handle on hover */
  24. ::-webkit-scrollbar-thumb:hover {
  25. background: #ffd9ed;
  26. opacity: 1.0;
  27. }
  28. </style>
Advertisement
Add Comment
Please, Sign In to add comment