Complete 1.1.3-1.1.5: CSS modularization - reset, variables, layout, components, utilities files created, BEM framework implemented
This commit is contained in:
parent
00266a1a85
commit
5577d31c82
6 changed files with 1240 additions and 1 deletions
16
reset.css
Normal file
16
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