schedule style fixes

pull/11/head
Leif Niemczik 2022-12-26 13:02:03 +01:00
parent 28fb61ba76
commit a0a109ad09
1 changed files with 21 additions and 9 deletions

View File

@ -5,20 +5,32 @@ import Layout from '../../layouts/Layout.astro'
<Layout title='schedule'>
<main>
<article>
<main>
<header>
<h1>Schedule</h1>
This is our event schedule. You can download it, as well as find more information <a href="https://pretalx.c3voc.de/hip-berlin-2022/schedule/">here</a>.
<pretalx-schedule event-url="https://pretalx.c3voc.de/hip-berlin-2022/" locale="en" format="list" style="--pretalx-clr-primary: #363336"></pretalx-schedule>
<noscript>
<div class="pretalx-widget">
<div class="pretalx-widget-info-message">
JavaScript is disabled in your browser. To access our schedule without JavaScript,
please <a target="_blank" href="https://pretalx.c3voc.de/hip-berlin-2022/schedule/">click here</a>.
</header>
<main>
<div class="schedule">
<pretalx-schedule event-url="https://pretalx.c3voc.de/hip-berlin-2022/" locale="en" format="list" style="--pretalx-clr-primary: #363336"></pretalx-schedule>
<noscript>
<div class="pretalx-widget">
<div class="pretalx-widget-info-message">
JavaScript is disabled in your browser. To access our schedule without JavaScript,
please <a target="_blank" href="https://pretalx.c3voc.de/hip-berlin-2022/schedule/">click here</a>.
</div>
</div>
</div>
</noscript>
</noscript>
</div>
</main>
</article>
</main>
</Layout>
<style lang="scss">
.schedule {
margin: -1.5rem;
margin-top: 2rem;
overflow-x: hidden;
}
</style>