feature: immo

This commit is contained in:
Benno Tielen 2025-07-09 15:01:05 +02:00
parent 548e4c2c00
commit 24f7f0db7a
2 changed files with 116 additions and 93 deletions

View file

@ -14,7 +14,7 @@ export default function Page() {
<Title title={'Immobilienentwicklung in der Pfarrei Hl. Drei Könige'} /> <Title title={'Immobilienentwicklung in der Pfarrei Hl. Drei Könige'} />
<div className={styles.container}> <div className={styles.container}>
<div className={styles.paddLeft}> <div>
<h3>Warum das Ganze?</h3> <h3>Warum das Ganze?</h3>
<p> <p>
@ -53,7 +53,7 @@ export default function Page() {
</a>) </a>)
</p> </p>
</div> </div>
<div> <div className={styles.events}>
<GroupEvents id={"967f8a7f-38bf-404e-b7b7-ac8f14601193"} /> <GroupEvents id={"967f8a7f-38bf-404e-b7b7-ac8f14601193"} />
</div> </div>
</div> </div>
@ -215,6 +215,8 @@ export default function Page() {
</div> </div>
<h4>Ergebnisse der Begleitung durch ARGE LiBaSt</h4> <h4>Ergebnisse der Begleitung durch ARGE LiBaSt</h4>
<div className={styles.tableDiv}>
<table className={styles.table}> <table className={styles.table}>
<thead className={styles.borderRow}> <thead className={styles.borderRow}>
<tr className={styles.borderRow}> <tr className={styles.borderRow}>
@ -310,6 +312,7 @@ export default function Page() {
</tr> </tr>
</tbody> </tbody>
</table> </table>
</div>
<h3>Fragen? Anregungen? Beteiligung?</h3> <h3>Fragen? Anregungen? Beteiligung?</h3>

View file

@ -16,8 +16,8 @@
border-radius: 10px; border-radius: 10px;
} }
.paddLeft { .events {
padding-right: 200px; min-width: 450px;
} }
.list { .list {
@ -43,19 +43,23 @@
} }
.quote { .quote {
padding-top: 30px; padding: 50px 0;
padding-bottom: 30px;
background-color: $shade3; background-color: $shade3;
text-align: center; text-align: center;
color: $base-color; color: $base-color;
font-size: 22px; font-size: 22px;
margin-bottom: 160px; margin-bottom: 100px;
} }
.small { .small {
font-size: 14px; font-size: 14px;
} }
.tableDiv {
width: 100%;
overflow: auto;
}
.table { .table {
margin-bottom: 120px; margin-bottom: 120px;
width: 100%; width: 100%;
@ -76,3 +80,19 @@
border-bottom: 1px solid; border-bottom: 1px solid;
} }
@media screen and (max-width: 576px) {
.container {
display: block;
}
.list {
padding-right: 20px;
}
.events {
margin-top: 40px;
min-width: inherit;
width: 100%;
}
}