Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
108 changes: 28 additions & 80 deletions frontend/app/versorgungs-kompass.css
Original file line number Diff line number Diff line change
Expand Up @@ -5323,15 +5323,6 @@
}
}

.home-hero__lead {
max-width: 680px;
margin: 30px auto 0;
color: #53617a;
font-size: clamp(0.96rem, 1.25vw, 1.08rem);
font-weight: 620;
line-height: 1.55;
}

.home-scroll-cue {
min-height: 44px;
display: inline-flex;
Expand All @@ -5353,12 +5344,37 @@
.home-destinations-section {
min-height: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 22px;
padding: 80px 56px;
scroll-margin-top: 0;
}

.home-destinations__intro {
width: min(1120px, 100%);
display: flex;
align-items: center;
gap: 9px;
margin: 0;
color: var(--text-muted);
font-size: 0.82rem;
font-weight: 650;
line-height: 1.45;
text-align: left;
}

.home-destinations__intro::before {
width: 18px;
height: 2px;
flex: 0 0 18px;
border-radius: 999px;
background: var(--primary);
content: "";
opacity: 0.58;
}

.home-destinations {
width: min(1120px, 100%);
display: grid;
Expand Down Expand Up @@ -5500,6 +5516,7 @@

.home-destinations-section {
align-items: flex-start;
gap: 17px;
padding: 62px 18px;
}

Expand Down Expand Up @@ -12163,10 +12180,6 @@
flex-wrap: wrap;
}

.format-profile__status-select {
width: 100%;
}

.format-participation-status {
display: inline-flex;
align-items: center;
Expand Down Expand Up @@ -12199,7 +12212,7 @@

.format-profile__link-form {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(132px, 0.55fr);
grid-template-columns: minmax(0, 1fr);
gap: 8px;
align-items: end;
border: 1px dashed var(--border-strong);
Expand Down Expand Up @@ -12562,7 +12575,6 @@
align-items: stretch;
}

.format-profile__status-select,
.format-profile__status-form .action-button,
.format-profile__link-form .action-button {
width: 100%;
Expand Down Expand Up @@ -32429,7 +32441,7 @@

.format-overview-hero {
display: grid;
grid-template-columns: minmax(420px, 1fr) minmax(220px, 300px);
grid-template-columns: minmax(0, 1fr);
gap: 18px;
align-items: center;
border: 0;
Expand Down Expand Up @@ -32679,66 +32691,6 @@
height: 16px;
}

.format-overview-visual {
min-width: 0;
display: grid;
align-items: center;
justify-items: end;
border: 0;
background: transparent;
padding: 0;
}

.format-roundtable-illustration {
width: min(100%, 280px);
aspect-ratio: 16 / 10;
display: block;
border: 1px solid var(--border);
border-radius: var(--radius-md);
background: #ffffff;
}

.format-roundtable-illustration__bubble {
fill: #ffffff;
stroke: #cad7ef;
stroke-width: 2.2;
}

.format-roundtable-illustration__bubble-line,
.format-roundtable-illustration__person {
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
}

.format-roundtable-illustration__bubble-line {
stroke: var(--primary);
stroke-width: 3;
}

.format-roundtable-illustration__person {
stroke-width: 3.2;
}

.format-roundtable-illustration__person--blue {
stroke: var(--primary);
}

.format-roundtable-illustration__person--green {
stroke: #178a55;
}

.format-roundtable-illustration__person--amber {
stroke: #b7791f;
}

.format-roundtable-illustration__connector {
fill: none;
stroke: #dbe5f8;
stroke-linecap: round;
stroke-width: 2.4;
}

.format-section {
display: grid;
gap: 12px;
Expand Down Expand Up @@ -34498,10 +34450,6 @@
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.format-overview-hero {
grid-template-columns: minmax(360px, 1fr) minmax(220px, 300px);
}

.format-diversity-board,
.format-participant-filter-grid,
.format-facts-grid {
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/versorgungs-kompass.html
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,6 @@ <h3 class="filter-panel-title">Filter</h3>
<span class="home-reveal-heading__measure" aria-hidden="true">Gemeinsam<br />Versorgung<br />gestalten</span>
<span class="home-reveal-heading__visual" aria-hidden="true"></span>
</h1>
<p class="home-hero__lead">Wähle den Kompass, in dem du weiterarbeiten möchtest.</p>
<button class="home-scroll-cue" type="button" data-home-scroll-cue aria-controls="home-destinations">
Bereiche ansehen
<span aria-hidden="true">↓</span>
Expand All @@ -565,6 +564,7 @@ <h3 class="filter-panel-title">Filter</h3>
</noscript>
</header>
<nav class="home-destinations-section" id="home-destinations" aria-label="Bereiche" tabindex="-1">
<p class="home-destinations__intro">Wähle den Kompass, in dem du weiterarbeiten möchtest.</p>
<ul class="home-destinations">
<li class="home-destination-card">
<a class="home-destination-link" data-home-module="care" data-route-link="map" href="#map">
Expand Down
Loading
Loading