wip design is mobile first with some bugs

This commit is contained in:
asus
2024-05-19 12:26:30 +02:00
parent 527424df53
commit 00485dbc70
5 changed files with 41 additions and 5 deletions

39
styles/sections.css Normal file
View File

@@ -0,0 +1,39 @@
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;
header {
display: flex;
flex-direction: column;
place-content: center;
h1 {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
}
article {
text-align: left;
}
> * {
grid-column: 2 / span 1;
}
> .grid_full_width {
grid-column: 1 / span 3;
}
.banner {
overflow-x: hidden;
}
}