custom scrollbar

PHOTO EMBED

Thu Oct 08 2020 14:39:33 GMT+0000 (Coordinated Universal Time)

Saved by @bifrost

/* width scrollbar */
::-webkit-scrollbar {
width: 7px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(141, 141, 141); 
  border-radius: 10px;
}

/* Track progress bar of the scrollbar */
::-webkit-scrollbar-track {
  background:  rgba(56, 55, 55, 0.809); 
  box-shadow: inset 0 0 3px rgba(236, 235, 235, 0.319); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(75,192,192,1); 
  }
content_copyCOPY