fix: Uncapitalize folder titles and finalize file cleanup

This commit is contained in:
LukeGus
2025-10-31 21:07:12 -05:00
parent e375878576
commit a9709f3877
88 changed files with 79 additions and 821 deletions

View File

@@ -6,34 +6,33 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Termix</title>
<style>
/* Custom scrollbar styles */
.hide-scrollbar {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none;
-ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
display: none; /* Chrome, Safari, Opera */
display: none;
}
.skinny-scrollbar {
scrollbar-width: thin; /* Firefox */
scrollbar-color: #4a4a4a #1e1e21; /* thumb and track color for Firefox */
scrollbar-width: thin;
scrollbar-color: #4a4a4a #1e1e21;
}
.skinny-scrollbar::-webkit-scrollbar {
width: 6px; /* width for vertical scrollbar */
height: 6px; /* height for horizontal scrollbar */
width: 6px;
height: 6px;
}
.skinny-scrollbar::-webkit-scrollbar-track {
background: #1e1e21; /* track color */
background: #1e1e21;
}
.skinny-scrollbar::-webkit-scrollbar-thumb {
background-color: #4a4a4a; /* thumb color */
border-radius: 3px; /* roundness of the thumb */
border: 1px solid #1e1e21; /* border around the thumb */
background-color: #4a4a4a;
border-radius: 3px;
border: 1px solid #1e1e21;
}
</style>
</head>