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
|
::-webkit-scrollbar { width: 20px; height: 40px; display: none; }
::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: rgb(246, 214, 214); border-radius: 3px; }
::-webkit-scrollbar-thumb { border-radius: 7px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); background-color: #f50e0e; }
::-webkit-scrollbar-button { background-color: rgb(255, 255, 255); }
::-webkit-scrollbar-corner { background: rgb(252, 227, 7); }
|