39 lines
584 B
CSS
39 lines
584 B
CSS
section {
|
|
display: grid;
|
|
margin: 0px;
|
|
width: 100vw;
|
|
grid-template-columns: auto auto auto;
|
|
grid-auto-rows: auto;
|
|
grid-gap: 10px;
|
|
gap: 10px;
|
|
min-height: 100vh;
|
|
justify-items: center;
|
|
text-align: center;
|
|
}
|
|
section header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
place-content: center;
|
|
}
|
|
section header h1 {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
|
|
section article {
|
|
text-align: left;
|
|
}
|
|
|
|
section > * {
|
|
grid-column: 2 / span 1;
|
|
}
|
|
section > .grid_full_width {
|
|
grid-column: 1 / span 3;
|
|
}
|
|
|
|
section .banner {
|
|
overflow-x: hidden;
|
|
}
|