Files
WEBSITE_hugulumu/styles/elements/sections.css
asus 4f5cd77c81 - removed nav
- moved cv to the hero section
- also changed it to collapse all at once instead of by sub titles
- and changed grid to auto flow instead of using named areas
2024-05-15 19:28:57 +02:00

35 lines
464 B
CSS

section {
display: grid;
margin: 0px;
width: 100vw;
grid: 1fr auto 1fr / auto;
grid-gap: 10px;
gap: 10px;
min-height: 100vh;
justify-items: center;
header {
display: flex;
flex-direction: column;
place-content: center;
h1 {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
}
> * {
grid-column: 2 / span 1;
}
> .full_width {
grid-column: 1 / span 3;
}
.banner {
overflow-x: hidden;
}
}