add address

This commit is contained in:
lilly 2026-06-10 11:20:13 +02:00
commit 4cb03ce676
Signed by: lilly
SSH key fingerprint: SHA256:y9T5GFw2A20WVklhetIxG1+kcg/Ce0shnQmbu1LQ37g
2 changed files with 39 additions and 1 deletions

View file

@ -17,6 +17,20 @@ Wir wollen das nicht hinnehmen.
Daher gehen wir auf die Straße. Am 20.06. um 14 Uhr in Hamburg, auf dem Hansaplatz.
## Wo?
<div class="place">
<div>
Hansaplatz<br>
20099 Hamburg
</div>
<div class="osm-embedd">
<iframe src="https://www.openstreetmap.org/export/embed.html?bbox=10.009161829948427%2C53.55274134317091%2C10.012761354446411%2C53.556750282615745&amp;layer=mapnik"></iframe>
<small><a href="https://www.openstreetmap.org/?#map=18/53.554746/10.010962">View Larger Map</a></small>
</div>
</div>
---
## Aktuelle Gesetzesänderungen

View file

@ -90,12 +90,36 @@
nav {
display: flex;
justify-content: center;
gap: var(--space-s);
gap: var(--space-xs);
li {
list-style: none;
}
}
}
.place {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
gap: var(--space-s);
.osm-embedd {
flex-grow: 1;
min-width: 400px;
max-width: 600px;
display: flex;
flex-direction: column;
align-items: center;
gap: var(--space-xs);
iframe {
border: 1px solid var(--color-primary);
width: 100%;
aspect-ratio: 1;
}
}
}
}