Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ::-webkit-scrollbar-thumb {
  2. background-color: #ff4872;
  3. }
  4.  
  5. -webkit-overflow-scrolling: scroll;
  6.  
  7. ::-webkit-scrollbar {
  8. width: 12px;
  9. }
  10. ::-webkit-scrollbar-track {
  11. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  12. border-radius: 10px;
  13. }
  14. ::-webkit-scrollbar-thumb {
  15. border-radius: 10px;
  16. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
  17. }
  18.  
  19. .scrollContainer::-webkit-scrollbar-thumb {
  20. background: #ff4872;
  21. border-radius: 10px;
  22. -webkit-box-shadow: inset 0 0 6px rgba(112,0222,0,0.5);
  23.  
  24. }
  25. .scrollContainer {
  26. font-size: 2em;
  27. width: 300px;
  28. height: 440px;
  29. background-color: #eee;
  30. overflow: scroll;
  31. }
  32.  
  33. .scrollTest {
  34. width: 270px;
  35. height: 440px;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement