Skip to content

Commit e42646c

Browse files
committed
add FAQ section
1 parent 71523a9 commit e42646c

File tree

2 files changed

+122
-1
lines changed

2 files changed

+122
-1
lines changed

css/common.css

+58-1
Original file line numberDiff line numberDiff line change
@@ -701,4 +701,61 @@ footer a:is(:focus, .active, .active:hover) {
701701

702702
footer a:is(.active) {
703703
text-decoration-color: var(--white);
704-
}
704+
}
705+
706+
.cc-faq {
707+
margin-block: 3rem 6rem;
708+
}
709+
710+
.cc-faq h2 {
711+
text-align: center;
712+
}
713+
714+
.cc-faq ul {
715+
list-style: none;
716+
padding: 0;
717+
margin: 0;
718+
display: flex;
719+
flex-direction: column;
720+
}
721+
722+
.cc-faq a {
723+
display: inline-flex;
724+
font-size: 1rem;
725+
font-weight: 600;
726+
}
727+
728+
.cc-faq li {
729+
width: 100%;
730+
}
731+
732+
.cc-faq li {
733+
align-self: center;
734+
text-align: center;
735+
}
736+
737+
.cc-faq h3 {
738+
font-size: var(--type-0);
739+
padding-block: 0;
740+
margin-block: 2rem 0;
741+
color: var(--code-connect-color);
742+
cursor: pointer;
743+
}
744+
745+
.cc-faq p {
746+
margin-block-start: 0.5rem;
747+
margin-block-end: 0;
748+
display: none;
749+
}
750+
751+
.cc-faq p.active {
752+
display: block;
753+
}
754+
755+
@media only screen and (min-width: 768px) {
756+
.cc-faq li {
757+
width: 100%;
758+
align-self: flex-start;
759+
text-align: start;
760+
}
761+
}

index.html

+64
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,64 @@ <h2>Location</h2>
125125
</div>
126126
</section>
127127

128+
<section>
129+
<div class="cc-faq">
130+
<div>
131+
<h2>FAQ</h2>
132+
<ul>
133+
134+
<li>
135+
<h3 onclick="toggleAnswer(event)">How big is the event?</h3>
136+
<p>
137+
There will be ~400 people on site in St. Leon-Rot. The number of people attending online is hard to predict.
138+
</p>
139+
</li>
140+
141+
<li>
142+
<h3 onclick="toggleAnswer(event)">Livestreams: do I need to register?</h3>
143+
<p>
144+
No 😁. All streams will be publicly accessible. We'll put up the URLs everywhere (including this site) as soon as the streams are live.
145+
</p>
146+
</li>
147+
148+
<li>
149+
<h3 onclick="toggleAnswer(event)">Will there be food and drinks on-site?</h3>
150+
<p>
151+
Yes 😋. And plenty, including coffee and vegetarian options. All free. Also for the evening event.<br>
152+
In case you have special dietary requirements (such as gluten- or lactose intolerance), let us know <a href="mailto:recap.conf@gmail.com">via e-mail</a> and we'll work something out.
153+
</p>
154+
</li>
155+
156+
<li>
157+
<h3 onclick="toggleAnswer(event)">What's happening on the pre-conference evening on Mon, June 3?</h3>
158+
<p>
159+
There's an unofficial evening event happening on Monday, June 3, prior to the three <a href="https://code-connect.dev">Code Connect</a> events - <br><em>all</em> Code Connect participants are invited, from re>≡CAP, UI5con and ABAPconf.<br>
160+
We'll meet at the cozy Spanish-stlye restaurant <a href="https://maps.app.goo.gl/Y6n4umHXctbBH7JV9">&raquo;La Tortuga&laquo; in Walldorf</a> - there'll be no agenda or seating order, we'll just get together for food, drinks, tech- & non-tech talk and being merry.<br>
161+
Doors open a 7pm (19:00 CEST) and we have the location to ourselves.<br>
162+
Food is flat €17 for an all-in Tapas 🥗🍤🧆🍖 buffet that includes vegetarian tapas; drinks are separate and to be paid individually.<br>
163+
Note that you'll be asked to pay the flat €17 at the door (credit cards accepted) where you'll also get a bracelet indicating you're with the cool Code Connect people 😎
164+
</p>
165+
</li>
166+
167+
<li>
168+
<h3 onclick="toggleAnswer(event)">WLAN on-site?</h3>
169+
<p>Yes. SSID and access code(s) will be provided upon check-in and in the conference app.</p>
170+
</li>
171+
172+
<li>
173+
<h3 onclick="toggleAnswer(event)">I'm off after the event. Any place to park my bags/luggage?</h3>
174+
<p>Yes. There'll be a locked room available to park bags/luggage in. Just ask at the registration desk.</p>
175+
</li>
176+
177+
<li>
178+
<h3 onclick="toggleAnswer(event)">Is there a dress code?</h3>
179+
<p>Please. No. You wear what you're comfy in. So will the org team.</p>
180+
</li>
181+
</ul>
182+
</div>
183+
</div>
184+
</section>
185+
128186
<section class="cc-sponsors">
129187
<h2>Our sponsors</h2>
130188
<div class="cc-logo-container">
@@ -156,3 +214,9 @@ <h2>Our sponsors</h2>
156214
</body>
157215

158216
</html>
217+
218+
<script>
219+
function toggleAnswer(e) {
220+
var nextElement = e.target.nextElementSibling.classList.toggle("active");
221+
}
222+
</script>

0 commit comments

Comments
 (0)