1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| ::-webkit-scrollbar { width: 5px; height: 5px; background-color: #111; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: rgba(255,255,255,0.5); } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: rgba(20,200,230,0.5); }
::-webkit-scrollbar-thumb:hover{ border-radius: 5px; -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); background: rgba(0,0,0,0.4); }
html { scrollbar-face-color:#bfbfbf; scrollbar-highlight-color:#000; scrollbar-3dlight-color:#000; scrollbar-darkshadow-color:#000; scrollbar-Shadow-color:#adadad; scrollbar-arrow-color:rgba(0,0,0,0.4); scrollbar-track-color:#eeeeee; }
|