Adding about page

This commit is contained in:
Dan 2025-12-09 11:54:24 +00:00
parent 1e6f9a845e
commit 6f4e21572a
16 changed files with 479 additions and 225 deletions

View file

@ -0,0 +1,27 @@
.about-page {
color: white;
margin: auto;
> .about-content {
width: 50%;
margin: auto;
padding: 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
> .wide-item {
grid-column: 1 / -1;
}
> .about-header {
text-align: center;
}
}
}
@media (max-width: 800px) {
.about-page > .about-content {
width: 100%;
}
}