forked from qinlili23333/ctfileGet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
public.css
44 lines (38 loc) · 770 Bytes
/
public.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
::-webkit-scrollbar {
height: 12px;
width: 8px;
background: transparent;
z-index: 12;
overflow: visible;
}
::-webkit-scrollbar-thumb {
width: 10px;
background-color: #FADCBB;
z-index: 12;
border: 3px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
transition: background-color .32s ease-in-out;
margin: 4px;
min-height: 32px;
min-width: 32px;
}
::-webkit-scrollbar-thumb:hover {
background: #FADCBB;
}
::-webkit-scrollbar-corner {
background: #202020;
}
a {
color: darkorange;
text-decoration: none !important;
}
li {
user-select: all !important;
}
* {
scrollbar-width: thin;
scrollbar-color: #FADCBB transparent;
box-sizing: border-box;
margin: 0;
padding: 0;
}