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'> <Layout title='schedule'>
<main> <main>
<article> <article>
<main> <header>
<h1>Schedule</h1> <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>. 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> </header>
<noscript> <main>
<div class="pretalx-widget"> <div class="schedule">
<div class="pretalx-widget-info-message"> <pretalx-schedule event-url="https://pretalx.c3voc.de/hip-berlin-2022/" locale="en" format="list" style="--pretalx-clr-primary: #363336"></pretalx-schedule>
JavaScript is disabled in your browser. To access our schedule without JavaScript, <noscript>
please <a target="_blank" href="https://pretalx.c3voc.de/hip-berlin-2022/schedule/">click here</a>. <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>
</div> </noscript>
</noscript> </div>
</main> </main>
</article> </article>
</main> </main>
</Layout> </Layout>
<style lang="scss">
.schedule {
margin: -1.5rem;
margin-top: 2rem;
overflow-x: hidden;
}
</style>