::-webkit-scrollbar { width: 5px; } /* Track */ ::-webkit-scrollbar-track { width:5px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 10px; border-radius: 10px; } /* Handle */ ::-webkit-scrollbar-thumb { -webkit-border-radius: 10px; width:5px; border-radius: 10px; background: #555; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } /* Handle on hover */ ::-webkit-scrollbar-track:hover { width:5px; background: #555; } ::-webkit-scrollbar-thumb:hover { width:5px; background: orange; } /* Handle on hover */ ::-webkit-scrollbar-track:active { width:5px; background: #555; }