-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscroll.css
More file actions
54 lines (44 loc) · 1.05 KB
/
scroll.css
File metadata and controls
54 lines (44 loc) · 1.05 KB
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
53
54
/*전체>>>핸들로 좁혀나갈것 중간과정 생략되면 작동 안됨*/
.content-item::-webkit-scrollbar {
width: 15px;
}
/* Track */
.content-item::-webkit-scrollbar-track {
background: rgb(255, 233, 172);
}
/* Handle */
.content-item::-webkit-scrollbar-thumb {
background: rgb(235, 170, 57);
border: 3px rgb(255, 233, 172) solid;
border-top: none;
border-bottom: none;
}
/* Handle on hover */
.content-item::-webkit-scrollbar-thumb:hover {
background: rgb(141, 102, 34);
}
.content-item::-webkit-scrollbar-thumb:active {
border: none;
}
/*얼굴*/
.bodytablewrap::-webkit-scrollbar {
width: 15px;
}
/* Track */
.bodytablewrap::-webkit-scrollbar-track {
background: rgb(255, 233, 172);
}
/* Handle */
.bodytablewrap::-webkit-scrollbar-thumb {
background: rgb(235, 170, 57);
border: 3px rgb(255, 233, 172) solid;
border-top: none;
border-bottom: none;
}
/* Handle on hover */
.bodytablewrap::-webkit-scrollbar-thumb:hover {
background: rgb(141, 102, 34);
}
.bodytablewrap::-webkit-scrollbar-thumb:active {
border: none;
}