website/frontend/static/styles.css

32 lines
503 B
CSS
Raw Normal View History

2024-12-11 02:38:42 -06:00
* {
2024-12-22 19:42:23 -06:00
scrollbar-width: thin;
scrollbar-color: rgb(120, 60, 0) rgb(20, 20, 20);
}
*::-webkit-scrollbar {
width: 10px;
height: 10px;
display: block;
}
*::-webkit-scrollbar-track {
background: rgb(30, 30, 30);
border-radius: 4px;
}
*::-webkit-scrollbar-thumb {
background: rgb(120, 60, 0);
border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
background: rgb(120, 60, 0);
}
*::-webkit-scrollbar-corner {
background: rgb(30, 30, 30);
}
*::-webkit-scrollbar {
display: none;
}