2023-01-30 22:49:01 +01:00
|
|
|
|
---
|
|
|
|
|
|
import Layout from '../layouts/Layout.astro';
|
|
|
|
|
|
import Card from '../components/Card.astro';
|
|
|
|
|
|
---
|
|
|
|
|
|
|
2023-01-30 23:17:02 +01:00
|
|
|
|
<Layout title="Les Particules">
|
2023-01-30 22:49:01 +01:00
|
|
|
|
<main>
|
2023-01-30 23:12:40 +01:00
|
|
|
|
<h1>
|
2023-09-27 16:56:51 +02:00
|
|
|
|
<img alt="Logo" src="/logo_les-particules_noir.jpg" style="width:80px; vertical-align: middle" />
|
2023-01-30 22:49:01 +01:00
|
|
|
|
Les particules
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
<p class="instructions">
|
|
|
|
|
|
La troupe d'improvisation théâtrale chatouilleuse, curieuse, créative et autogérée<br/>
|
|
|
|
|
|
📌 Albi, Occitanie
|
|
|
|
|
|
</p>
|
2023-09-27 18:04:20 +02:00
|
|
|
|
<div class="dates">
|
|
|
|
|
|
<span class="title">Retrouvez-nous prochainement <span>→</span></span>
|
2023-02-04 23:00:56 +01:00
|
|
|
|
<ul>
|
2023-09-27 16:10:49 +02:00
|
|
|
|
<li>28 octobre 2023 à 19h30 au <a target="_blank" href="https://cartessurtable.wixsite.com/cartes-sur-table">Cartes sur Table</a> à Gaillac</li>
|
2023-10-20 23:43:43 +02:00
|
|
|
|
<li>12 novembre 2023 à 18h30 au <a target="_blank" href="https://lescenophage.org/">Scénophage</a> à Gaillac</li>
|
2023-02-04 23:00:56 +01:00
|
|
|
|
</ul>
|
|
|
|
|
|
</div>
|
2023-01-30 22:49:01 +01:00
|
|
|
|
<ul role="list" class="link-card-grid">
|
2023-09-27 16:10:38 +02:00
|
|
|
|
<Card
|
|
|
|
|
|
title="Les Particules Fines"
|
2023-09-27 17:44:41 +02:00
|
|
|
|
href="/fines"
|
2023-09-27 16:56:51 +02:00
|
|
|
|
span={true}
|
2023-09-27 16:10:38 +02:00
|
|
|
|
>
|
|
|
|
|
|
Cours d’impro adultes débutant·e·s<br/>
|
|
|
|
|
|
<strong>Début des cours d’essai en octobre !</strong>
|
|
|
|
|
|
</Card>
|
2023-01-30 22:49:01 +01:00
|
|
|
|
<Card
|
2023-09-27 16:56:51 +02:00
|
|
|
|
href="./inscription-newsletter"
|
|
|
|
|
|
title="Newsletter"
|
2023-09-27 16:10:38 +02:00
|
|
|
|
>
|
2023-09-27 16:56:51 +02:00
|
|
|
|
Tous nos évènements directement dans votre boite aux lettres !
|
2023-09-27 16:10:38 +02:00
|
|
|
|
</Card>
|
2023-01-30 22:49:01 +01:00
|
|
|
|
<Card
|
2023-09-27 16:56:51 +02:00
|
|
|
|
href="/contact"
|
|
|
|
|
|
title="Contact"
|
2023-09-27 16:10:38 +02:00
|
|
|
|
>
|
2023-09-27 16:56:51 +02:00
|
|
|
|
Écrivez-nous ou suivez-nous sur les réseaux
|
2023-09-27 16:10:38 +02:00
|
|
|
|
</Card>
|
2023-01-30 22:49:01 +01:00
|
|
|
|
</ul>
|
|
|
|
|
|
</main>
|
|
|
|
|
|
</Layout>
|
|
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
|
main {
|
|
|
|
|
|
margin: auto;
|
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
|
max-width: 60ch;
|
|
|
|
|
|
}
|
|
|
|
|
|
h1 {
|
|
|
|
|
|
font-size: 3rem;
|
|
|
|
|
|
font-weight: 800;
|
|
|
|
|
|
margin: 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
.text-gradient {
|
|
|
|
|
|
background-image: var(--accent-gradient);
|
|
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
|
|
-webkit-text-fill-color: transparent;
|
|
|
|
|
|
background-size: 400%;
|
|
|
|
|
|
background-position: 0%;
|
|
|
|
|
|
}
|
2023-09-27 18:04:20 +02:00
|
|
|
|
.instructions, .dates {
|
2023-01-30 22:49:01 +01:00
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
margin: 1rem 0;
|
|
|
|
|
|
border: 1px solid rgba(var(--accent), 25%);
|
|
|
|
|
|
background-color: white;
|
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
|
border-radius: 0.4rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
.instructions strong {
|
|
|
|
|
|
color: rgb(var(--accent));
|
|
|
|
|
|
}
|
|
|
|
|
|
.link-card-grid {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
|
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
padding: 0;
|
|
|
|
|
|
}
|
2023-09-27 18:04:20 +02:00
|
|
|
|
.dates {
|
|
|
|
|
|
color:#111;
|
|
|
|
|
|
font-size: 1.25rem;
|
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dates .title {
|
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dates ul {
|
|
|
|
|
|
list-style: none;
|
|
|
|
|
|
}
|
|
|
|
|
|
.dates li {
|
|
|
|
|
|
color:#444;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-01-30 22:49:01 +01:00
|
|
|
|
</style>
|