initial layout and styling added to style.css

This commit is contained in:
emma 2024-12-11 22:11:51 -05:00
parent e7f540de82
commit 9b9c975727
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
:root {
}
*, ::before, ::after {
margin: 0;
padding: 0;
}
html {
font-size: 16px;
}
body {
height: 100vh;
width: auto;
box-sizing: border-box;
}
main {
display: grid;
grid-template-columns: 1fr 2fr;
}
section {
grid-column: 2/3;
}