Upload website

This commit is contained in:
2025-09-29 11:24:54 +02:00
parent 337fb757d5
commit 7fa3715aec
82 changed files with 11586 additions and 2 deletions

29
dist/css/side-by-side.css vendored Normal file
View File

@@ -0,0 +1,29 @@
.side-by-side {
display: flex;
width: 100%;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
}
.side-by-side-item {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
}
@media only screen and (min-width: 999px) {
.side-by-side {
flex-direction: row;
}
.side-by-side-item {
width: 48%;
margin: 0.5%;
}
}