1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| ::-webkit-scrollbar{ width: 10px; height: 10px; background-color: #ccc; }
::-webkit-scrollbar-track{ box-shadow: inset 0 0 5px rgba(0,0,0,.3); background-color: #ccc; }
::-webkit-scrollbar-thumb{ border-radius: 10px; background-color: #bbb; box-shadow: inset 0 0 5px #000; }
::-webkit-scrollbar-button{ height: 10px; background-color: #333; }
|