CSS für FAQ und Auftrennung von a5, weil link nicht will

This commit is contained in:
2026-04-19 13:15:48 +02:00
parent 5c45cbab8b
commit c3bb3c56b9
4 changed files with 17 additions and 8 deletions
+3 -1
View File
@@ -122,7 +122,9 @@ return [
'q4' => 'Gibt es nur diesen einen Reisepass?', 'q4' => 'Gibt es nur diesen einen Reisepass?',
'a4' => 'Wir bieten den Hacker*innen-Reisepass sowie den Junghackerpass an. Letzteres jedoch nur in der deutschen Ausgabe.', 'a4' => 'Wir bieten den Hacker*innen-Reisepass sowie den Junghackerpass an. Letzteres jedoch nur in der deutschen Ausgabe.',
'q5' => 'Wie kann ich einen Hacker*innen-Reisepass beantragen?', 'q5' => 'Wie kann ich einen Hacker*innen-Reisepass beantragen?',
'a5' => 'Klicken Sie auf <a href="{{ route(\'apply\') }}">diesen Verweis</a> oder auf "Jetzt beantragen" in der Navigationsleiste oder auf die riesige 'a5_1' => 'Klicken Sie auf',
'a5_2' => 'diesen Verweis',
'a5_3' => 'oder auf "Jetzt beantragen" in der Navigationsleiste oder auf die riesige
leuchtende Schaltfläche auf der Startseite. Dort befolgen Sie einfach die Anweisungen.' leuchtende Schaltfläche auf der Startseite. Dort befolgen Sie einfach die Anweisungen.'
], ],
'imprint' => [ 'imprint' => [
+3 -1
View File
@@ -122,7 +122,9 @@ return [
'q4' => 'Is this the only passport available?', 'q4' => 'Is this the only passport available?',
'a4' => 'We offer the Hacker Passport and the Young Hacker Passport. The latter, however, is only available in the German edition.', 'a4' => 'We offer the Hacker Passport and the Young Hacker Passport. The latter, however, is only available in the German edition.',
'q5' => 'How can I apply for a Hacker Passport?', 'q5' => 'How can I apply for a Hacker Passport?',
'a5' => 'Click on <a href="{{ route(\'apply\') }}">this link</a>, or on “Apply Now” in the navigation bar, or on the large 'a5_1' => 'Click on',
'a5_2' => 'this link',
'a5_3' => ', or on “Apply Now” in the navigation bar, or on the large
glowing button on the homepage. There, simply follow the instructions.' glowing button on the homepage. There, simply follow the instructions.'
], ],
'imprint' => [ 'imprint' => [
+5
View File
@@ -142,6 +142,11 @@ select {
background-color: transparent; background-color: transparent;
} }
dt {
font-size: 1.2em;
font-weight: bold;
}
@media (max-width: 1024px) { @media (max-width: 1024px) {
.header { .header {
flex-direction: column; flex-direction: column;
+6 -6
View File
@@ -8,18 +8,18 @@
<dl> <dl>
<dt>{!! __('app.faq.q1') !!}</dt> <dt>{!! __('app.faq.q1') !!}</dt>
<dd>{!! __('app.faq.a1') !!}</dd> <dd>{!! __('app.faq.a1') !!}</dd>
<br />
<dt>{!! __('app.faq.q2') !!}</dt> <dt>{!! __('app.faq.q2') !!}</dt>
<dd>{!! __('app.faq.a2') !!}</dd> <dd>{!! __('app.faq.a2') !!}</dd>
<br />
<dt>{!! __('app.faq.q3') !!}</dt> <dt>{!! __('app.faq.q3') !!}</dt>
<dd>{!! __('app.faq.a3') !!}</dd> <dd>{!! __('app.faq.a3') !!}</dd>
<br />
<dt>{!! __('app.faq.q4') !!}</dt> <dt>{!! __('app.faq.q4') !!}</dt>
<dd>{!! __('app.faq.a4') !!}</dd> <dd>{!! __('app.faq.a4') !!}</dd>
<br />
<dt>{!! __('app.faq.q5') !!}</dt> <dt>{!! __('app.faq.q5') !!}</dt>
<dd>{!! __('app.faq.a5') !!}</dd> <dd>{!! __('app.faq.a5_1') !!} <a href="{{ route('apply') }}">{!! __('app.faq.a5_2') !!}</a> {!! __('app.faq.a5_3') !!}</dd>
<br />
</dl> </dl>
@endsection @endsection