Initial commit

This commit is contained in:
isUnknown 2026-02-12 15:22:46 +01:00
commit 65e0da7e11
1397 changed files with 596542 additions and 0 deletions

View file

@ -0,0 +1,35 @@
.egr-grid-item {
display: flex;
flex-wrap: wrap;
}
.egr-fieldset {
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
}
@media screen and (min-width: 60em) {
.egr-grid-item {
width: calc(100% + 1.5em);
}
.egr-fieldset {
margin-right: 1.5em;
margin-bottom: 1.5em;
}
.egr-grid-item-1-2 > .egr-fieldset {
width: calc(100% / 2 - 1.5em);
}
.egr-grid-item-1-3 > .egr-fieldset {
width: calc(100% / 3 - 1.5em);
}
.egr-grid-item-1-4 > .egr-fieldset {
width: calc(100% / 4 - 1.5em);
}
.egr-grid-item-1-5 > .egr-fieldset {
width: calc(100% / 5 - 1.5em);
}
}