55 lines
No EOL
901 B
CSS
55 lines
No EOL
901 B
CSS
:root {
|
|
--bg-color: rgb(29, 29, 29);
|
|
--border-color: rgb(69, 69, 69);
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#__next {
|
|
width: 100%;
|
|
height: 100%;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
background-color: var(--bg-color);
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--bg-color) white;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: 12px;
|
|
height: 12px;
|
|
cursor: default;
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: var(--bg-color);
|
|
}
|
|
|
|
*::-webkit-scrollbar-button {
|
|
display: none;
|
|
background: var(--bg-color);
|
|
}
|
|
|
|
*::-webkit-scrollbar-corner {
|
|
background: var(--bg-color);
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
border: 3px solid black;
|
|
border-radius: 6px;
|
|
background: rgb(255, 255, 255);
|
|
} |