scrollbar.css 689 B

1234567891011121314151617
  1. /* - SCROLL - */
  2. *::-webkit-scrollbar {
  3. width: 8px;
  4. height: 8px;
  5. }
  6. *::-webkit-scrollbar-track {
  7. -webkit-box-shadow: 0px 0px 3px #dfdfdf inset; -moz-box-shadow: 0px 0px 3px #dfdfdf inset; -o-box-shadow: 0px 0px 3px #dfdfdf inset; -ms-box-shadow: 0px 0px 3px #dfdfdf inset; box-shadow: 0px 0px 3px #dfdfdf inset ;
  8. -webkit-border-radius: 10px; -moz-border-radius: 10px; -o-border-radius: 10px; -ms-border-radius: 10px; border-radius: 10px ;
  9. }
  10. *::-webkit-scrollbar-thumb {
  11. background-color: #DDD;
  12. -webkit-border-radius: 10px; -moz-border-radius: 10px; -o-border-radius: 10px; -ms-border-radius: 10px; border-radius: 10px ;
  13. }
  14. *::-webkit-scrollbar-thumb:hover {
  15. background-color: #CCC;
  16. }