Reorganize assets into static/css and static/js folders for better file organization

This commit is contained in:
VinnyNC 2025-09-28 22:29:30 -04:00
parent 7d2931b7c9
commit 14bc8e6f44
11 changed files with 10 additions and 10 deletions

16
static/css/reset.css Normal file
View file

@ -0,0 +1,16 @@
/* Reset and normalize styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Base body styles */
body {
font-family: var(--font-family-primary);
background: var(--bg-darkest);
color: var(--text-primary);
height: 100vh;
overflow: hidden;
position: relative;
}