mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
28 lines
449 B
CSS
28 lines
449 B
CSS
@font-face {
|
|
font-family: "Poppins-Regular";
|
|
src: url("/fonts/Poppins-Regular.woff2") format('woff2');
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* width */
|
|
::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
|
|
/* Track */
|
|
::-webkit-scrollbar-track {
|
|
background: #696969;
|
|
}
|
|
|
|
/* Handle */
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgb(0, 0, 0);
|
|
}
|
|
|
|
/* Handle on hover */
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #48b7b0;
|
|
}
|