mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-17 16:46:04 +00:00
22 lines
541 B
CSS
22 lines
541 B
CSS
body {
|
|
margin: 0; /* Remove default margin */
|
|
height: 100vh; /* Set body height to viewport height */
|
|
background-color: #1a1a1a; /* Dark charcoal instead of pure black */
|
|
font-family: "MS Sans Serif", "Segoe UI", sans-serif;
|
|
}
|
|
|
|
input,
|
|
button {
|
|
font-family: "MS Sans Serif", "Segoe UI", sans-serif;
|
|
}
|
|
|
|
.scroller::-webkit-scrollbar,
|
|
.hide-scrollbar::-webkit-scrollbar {
|
|
display: none; /* Chrome, Safari, Edge */
|
|
}
|
|
|
|
.scroller,
|
|
.hide-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|