1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| .innerbox::-webkit-scrollbar{ width:4px; height:4px; }
.innerbox::-webkit-scrollbar-thumb{ border-radius:5px; -webkit-box-shadow:rgba(0,0,0,0.2); background:rgba(0,0,0,0.2); }
.innerbox::-webkit-scrollbar-track{ -webkit-box-shadow:rgba(0,0,0,0.2); border-radius:0; background:rgba(0,0,0,0.1); }
|