blob: 522cfd576d623a0567ab062ee65c406ae490d450 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background-color: rgba(0, 0, 0, .25);
}
/* Handle */
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.5);
border-radius: 999px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.7);
}
/* Handle on hold */
::-webkit-scrollbar-thumb:active {
background-color: rgb(0, 0, 0) !important;
}
|