emmas.place/style/style.css

56 lines
640 B
CSS
Raw Normal View History

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