finished v1.0

This commit is contained in:
2023-02-24 20:37:52 +01:00
parent 484294e611
commit 4471157412
45 changed files with 638 additions and 350 deletions

View File

@@ -0,0 +1,13 @@
#about {
margin-top: 50px;
display: grid;
gap: 20px;
grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1200px) {
#about {
grid-template-columns: unset;
grid-template-rows: repeat(2, max-content);
}
}