generated from jm1021/leuck_reunion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scroll.css
52 lines (42 loc) · 1.04 KB
/
scroll.css
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
.content-item::-webkit-scrollbar {
width: 15px;
}
/* Track */
.content-item::-webkit-scrollbar-track {
background: rgb(255, 172, 236);
}
/* Handle */
.content-item::-webkit-scrollbar-thumb {
background: rgb(93, 5, 96);
border: 3px rgb(255, 172, 236) solid;
border-top: none;
border-bottom: none;
}
/* Handle on hover */
.content-item::-webkit-scrollbar-thumb:hover {
background: rgb(93, 5, 96);
}
.content-item::-webkit-scrollbar-thumb:active {
border: none;
}
.bodytablewrap::-webkit-scrollbar {
width: 15px;
}
/* Track */
.bodytablewrap::-webkit-scrollbar-track {
background: rgb(255, 172, 236);
}
/* Handle */
.bodytablewrap::-webkit-scrollbar-thumb {
background: rgb(93, 5, 96);
border: rgb(255, 172, 236) solid;
border-top: none;
border-bottom: none;
}
/* Handle on hover */
.bodytablewrap::-webkit-scrollbar-thumb:hover {
background: rgb(93, 5, 96);
}
.bodytablewrap::-webkit-scrollbar-thumb:active {
border: none;
}