www.hip-berlin.de/src/pages/index.astro

61 lines
978 B
Plaintext

---
import Layout from '../layouts/Layout.astro'
---
<Layout>
<header>
<div>
<h1><img src='/logo.svg' alt='Hacking in Parallel ////' /></h1>
<time>December 27-30 2022</time>
</div>
</header>
<main>
<a href='https://pretalx.c3voc.de/hip-berlin-2022/cfp'>
<div class='cfp gradient-bg'>
<h2>Call for participation &rarr;</h2>
</div>
</a>
<div>
<address>
<h2>ETI Schauspielschule</h2>
Rungestraße 20<br />
10179 Berlin
</address>
</div>
</main>
</Layout>
<style lang='scss'>
header {
width: 100%;
min-height: 50vh;
display: flex;
align-items: center;
justify-content: center;
}
h1 {
font-size: 6.4ch;
line-height: 1.1;
color: var(--headline-color);
}
.cfp {
margin: 0 -1.5rem 3rem;
text-align: center;
a {
color: var(--background);
}
h2 {
font-size: 2.4rem;
line-height: 1.2;
margin: 0;
color: #000;
}
}
time {
font-size: 3.2ch;
}
address {
font-style: normal;
}
</style>