You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
336 B
CSS
23 lines
336 B
CSS
2 years ago
|
:root {
|
||
|
--main-col: #94B1FF;
|
||
|
}
|
||
|
|
||
|
/* Chromium-based */
|
||
|
::-webkit-scrollbar {
|
||
|
width: 12px;
|
||
|
}
|
||
|
::-webkit-scrollbar-thumb {
|
||
|
background-color: var(--main-col);
|
||
|
}
|
||
|
::-webkit-scrollbar-track {
|
||
|
background-color: #000;
|
||
|
}
|
||
|
::-webkit-scrollbar-corner {
|
||
|
background-color: #000;
|
||
|
}
|
||
|
|
||
|
/* Firefox-based */
|
||
|
* {
|
||
|
scrollbar-color: var(--main-col) #000;
|
||
|
}
|