Complete 1.1.3-1.1.5: CSS modularization - reset, variables, layout, components, utilities files created, BEM framework implemented

This commit is contained in:
VinnyNC 2025-09-28 22:19:36 -04:00
parent 00266a1a85
commit 5577d31c82
6 changed files with 1240 additions and 1 deletions

16
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;
}