mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-26 11:22:04 +02:00
28 lines
485 B
SCSS
28 lines
485 B
SCSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
.title {
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
.gridlayout {
|
|
display: grid;
|
|
grid-template-columns: 550px;
|
|
padding: 1rem;
|
|
width: 100vw;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
align-content: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
@media (min-width: 1150px) {
|
|
.gridlayout {
|
|
grid-template-columns: repeat(2, 550px);
|
|
}
|
|
}
|
|
}
|