emmas.place/style/style.css

56 lines
640 B
CSS

:root {
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-size: 16px;
}
body {
display: grid;
grid-template-rows: 5vh 2fr 5vh;
justify-content: center;
align-content: space-evenly;
}
main {
height: auto;
width: 70vw;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 2rem;
}
header {
grid-row: 1/2;
height: 5vh;
width: auto;
text-align: center;
}
footer {
grid-row: 3/4;
height: 5vh;
width: auto;
text-align: center;
align-self: end;
}
nav {
grid-row: 2/3;
width: 10vw;
height: auto;
justify-self: end;
}
section {
grid-column: 2/3;
grid-row: 2/3;
width: 55vw;
}