File size: 703 Bytes
0c20ea8 |
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 |
::-webkit-scrollbar {
width: 6px; /* Width of the scrollbar track */
}
/* Define the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
background: #cfcfcf; /* Color of the thumb */
border-radius: 6px; /* Rounded corners of the thumb */
}
/* Define the scrollbar track on hover */
::-webkit-scrollbar-track:hover {
background: #aaa; /* Color of the track on hover */
}
/* Define the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
background: #555; /* Color of the thumb on hover */
}
/* Define the scrollbar corner (between vertical and horizontal scrollbars) */
::-webkit-scrollbar-corner {
background: transparent; /* Color of the scrollbar corner */
}
|