First Commit

This commit is contained in:
cesnimda
2026-03-21 11:55:27 +01:00
commit 2e8a29b4d0
1757 changed files with 166084 additions and 0 deletions
@@ -0,0 +1,35 @@
@supports (-webkit-appearance: none) {
*::-webkit-scrollbar-track {
background: transparent; /* track color */
}
/* target the scrollbar track (background) */
*::-webkit-scrollbar {
width: 8px; /* Adjust for desired thinness */
background: transparent;
}
/* target the scrollbar thumb for light mode */
*::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, 0.2);
border-radius: 10px;
}
*::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, 0.4);
}
/* remove buttons */
*::-webkit-scrollbar-button {
display: none;
}
}
@supports (-moz-appearance: none) {
/* firefox specific styles */
/* adjust scrollbar width */
* {
scrollbar-width: thin; /* "auto" or "thin" for Firefox */
}
}