* {
|
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);
|
}
|