OpenVisor-Website/src/views/ssse-trume.vue

122 lines
3 KiB
Vue
Raw Normal View History

2024-04-26 21:56:56 +02:00
<template>
2024-04-26 21:56:56 +02:00
<div class="ssse-trume-container">
<app-navigation rootClassName="navigation-root-class-name"></app-navigation>
<h1 class="ssse-trume-heading">
2024-04-26 21:56:56 +02:00
<span>Süsse Träume</span>
<br />
</h1>
2024-04-26 21:56:56 +02:00
<span class="ssse-trume-caption">
2024-04-26 21:56:56 +02:00
<span>Fantasy Mini-LARP</span>
<br />
</span>
2024-04-26 21:56:56 +02:00
<p class="ssse-trume-description">
2024-04-26 21:56:56 +02:00
<span>
&quot;Weisst du, wer du bist? Was du bereust, befürchtest, vergessen
möchtest? Was du erreichen möchtest und was dir alles recht ist um dies zu
erreichen? Zeit, deine Antworten auf diese Fragen auf die Probe zu
stellen...&quot;
</span>
<br />
<br />
<span>
Süsse Träume war ein Fantasy Minilarp (nicht Nordic) im Wald von Eschikon
(8315 Lindau, Schweiz) das Sue und Hermann organisierten. Es ging darum,
dass ein Hexer Trajar die Spielercharaktere in seine Traumwelt entführte,
als diese sich schlafen legten. Hier wurde das Open Visor Larpkonzept noch
nicht verwendet.
</span>
<br />
</p>
2024-04-26 21:56:56 +02:00
<app-kontakt rootClassName="kontakt-root-class-name"></app-kontakt>
2024-04-26 21:56:56 +02:00
</div>
</template>
<script>
2024-04-26 21:56:56 +02:00
import AppNavigation from '../components/navigation'
import AppKontakt from '../components/kontakt'
2024-04-26 21:56:56 +02:00
export default {
2024-04-26 21:56:56 +02:00
name: 'SsseTrume',
2024-04-26 21:56:56 +02:00
components: {
2024-04-26 21:56:56 +02:00
AppNavigation,
AppKontakt,
2024-04-26 21:56:56 +02:00
},
metaInfo: {
2024-04-26 21:56:56 +02:00
title: 'Ssse-Trume - Open Visor',
2024-04-26 21:56:56 +02:00
meta: [
{
property: 'og:title',
2024-04-26 21:56:56 +02:00
content: 'Ssse-Trume - Open Visor',
2024-04-26 21:56:56 +02:00
},
],
},
}
</script>
<style scoped>
2024-04-26 21:56:56 +02:00
.ssse-trume-container {
2024-04-26 21:56:56 +02:00
width: 100%;
display: flex;
overflow: auto;
min-height: 100vh;
overflow-x: hidden;
align-items: center;
flex-direction: column;
2024-04-26 21:56:56 +02:00
background-size: cover;
background-image: url("/playground_assets/forest-background-luca-dross-1500w.jpg");
2024-04-26 21:56:56 +02:00
}
2024-04-26 21:56:56 +02:00
.ssse-trume-heading {
2024-04-26 21:56:56 +02:00
color: rgb(255, 255, 255);
font-size: 64px;
font-style: normal;
font-family: Poppins;
font-weight: 600;
}
2024-04-26 21:56:56 +02:00
.ssse-trume-caption {
2024-04-26 21:56:56 +02:00
color: rgb(255, 255, 255);
font-size: 20px;
font-family: Poppins;
line-height: 30px;
}
2024-04-26 21:56:56 +02:00
.ssse-trume-description {
2024-04-26 21:56:56 +02:00
color: rgb(255, 255, 255);
2024-04-26 21:56:56 +02:00
width: 90%;
font-size: 18px;
max-width: 1080px;
2024-04-26 21:56:56 +02:00
align-self: center;
font-style: normal;
margin-top: var(--dl-space-space-twounits);
font-family: Poppins;
font-weight: 400;
line-height: 28px;
padding-top: var(--dl-space-space-oneandhalfunits);
padding-left: var(--dl-space-space-oneandhalfunits);
2024-04-26 21:56:56 +02:00
border-radius: 20px;
2024-04-26 21:56:56 +02:00
padding-right: var(--dl-space-space-oneandhalfunits);
padding-bottom: var(--dl-space-space-oneandhalfunits);
background-color: rgba(41, 41, 41, 0.8);
}
2024-04-26 21:56:56 +02:00
@media(max-width: 991px) {
2024-04-26 21:56:56 +02:00
.ssse-trume-caption {
2024-04-26 21:56:56 +02:00
text-align: left;
}
}
@media(max-width: 767px) {
2024-04-26 21:56:56 +02:00
.ssse-trume-heading {
2024-04-26 21:56:56 +02:00
font-size: 40px;
}
2024-04-26 21:56:56 +02:00
.ssse-trume-caption {
2024-04-26 21:56:56 +02:00
color: rgb(255, 255, 255);
font-size: 16px;
font-family: Poppins;
line-height: 24px;
}
}
@media(max-width: 479px) {
2024-04-26 21:56:56 +02:00
.ssse-trume-heading {
max-width: auto;
text-align: center;
2024-04-26 21:56:56 +02:00
}
}
</style>