WIP: continued work on the feature page

This commit is contained in:
moonleay 2023-11-16 09:12:57 +01:00
parent 3d43c23399
commit 5d12017b0c
No known key found for this signature in database
GPG key ID: 82667543CCD715FB
5 changed files with 151 additions and 61 deletions

View file

@ -0,0 +1,33 @@
.container {
display: flex;
flex-direction: column;
align-items: center;
.title {
font-size: 3rem;
text-align: center;
margin-bottom: 1.2rem;
}
.centered {
display: flex;
flex-direction: column;
align-items: center;
}
.gridlayout div {
margin: 1rem;
}
}
@media (min-width: 1100px) {
.gridlayout {
display: grid;
grid-template-columns: repeat(2, 1fr);
align-items: center;
div {
grid-column: span 1;
}
}
}