Reorganize assets into static/css and static/js folders for better file organization
This commit is contained in:
parent
7d2931b7c9
commit
14bc8e6f44
11 changed files with 10 additions and 10 deletions
16
static/css/reset.css
Normal file
16
static/css/reset.css
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue