shuishen
2022-09-20 0d2351b15c8fbb0ab2d2017b3ef415bfd1cdfdbe
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
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html,
body {
    width: 100%;
    height: 100%;
}
 
.deblurring {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
 
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: none;
}
 
// hsla(0, 0%, 84.7%, 0.6);
::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: rgba(7, 22, 37, 0.8);
    padding-left: 2px;
    padding-right: 2px;
}
 
::-webkit-scrollbar-track {
    background-color: #fff;
}
 
::-webkit-scrollbar-thumb:window-inactive {
    background-color: rgba(7, 22, 37, 0.8);
}
 
:not(select)::-webkit-scrollbar {
    background-color: hsla(0, 0%, 84.7%, 0.2);
}
 
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(7, 22, 37, 0.8);
}