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

259 lines
6.4 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>
<div class="ssse-trume-container1 text-body">
<p>
<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>
</div>
2024-04-26 21:56:58 +02:00
<div class="ssse-trume-container2">
<a
href="https://www.dropbox.com/s/vnpc477fo6bxz1g/OpenVisor_Suesse_Traueme_1_Plot.pdf?dl=0"
target="_blank"
rel="noreferrer noopener"
class="ssse-trume-link"
>
<div class="ssse-trume-plot button">
<span class="ssse-trume-plot1">
<span>Plot</span>
<br />
</span>
</div>
</a>
<a
href="https://www.dropbox.com/s/wwigmb6qrv62cvx/OpenVisor_Suesse_Traueme_1_Plot_Hintergrund.pdf?dl=0"
target="_blank"
rel="noreferrer noopener"
class="ssse-trume-link1"
>
<div class="ssse-trume-hintergrund button">
<span class="ssse-trume-hintergrund1">Hintergrund</span>
</div>
</a>
<a
href="https://www.dropbox.com/s/2y3tc1yziynll94/OpenVisor_Suesse_Traueme_1_Infos_SC.pdf?dl=0"
target="_blank"
rel="noreferrer noopener"
class="ssse-trume-link2"
>
2024-04-26 21:57:02 +02:00
<div class="ssse-trume-infos-sc button">
<span class="ssse-trume-infos-sc1">
2024-04-26 21:56:58 +02:00
<span>Infos SC</span>
<br />
</span>
</div>
</a>
<a
href="https://www.dropbox.com/s/rqpjnkinbnhr8fy/OpenVisor_Suesse_Traueme_2_Anklageschrift.pdf?dl=0"
target="_blank"
rel="noreferrer noopener"
class="ssse-trume-link3"
>
<div class="ssse-trume-anklageschrift button">
<span class="ssse-trume-anklageschrift1">Anklageschrift</span>
</div>
</a>
<a
href="https://www.dropbox.com/s/vkw2f9sys5d46yw/OpenVisor_Suesse_Traueme_2_Gerichtsordnung.pdf?dl=0"
target="_blank"
rel="noreferrer noopener"
class="ssse-trume-link4"
>
<div class="ssse-trume-gerichtsordnung button">
<span class="ssse-trume-gerichtsordnung1">Gerichtsordnung</span>
</div>
</a>
</div>
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: {
title: 'OpenVisor - Süsse Träume',
2024-04-26 21:56:56 +02:00
meta: [
{
name: 'description',
content:
'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?"',
},
2024-04-26 21:56:56 +02:00
{
property: 'og:title',
content: 'OpenVisor - Süsse Träume',
},
{
property: 'og:description',
content:
'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 die Probe zu stellen..."',
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;
2024-04-26 21:56:57 +02:00
font-weight: 500;
2024-04-26 21:56:56 +02:00
}
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;
}
.ssse-trume-container1 {
align-items: center;
justify-content: center;
}
2024-04-26 21:56:58 +02:00
.ssse-trume-container2 {
gap: var(--dl-space-space-twounits);
flex: 0 0 auto;
width: 100%;
height: auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.ssse-trume-link {
display: contents;
}
.ssse-trume-plot {
width: 200px;
}
.ssse-trume-plot1 {
color: rgb(12, 16, 12);
font-size: 20px;
font-style: normal;
font-family: Poppins;
font-weight: 500;
line-height: 24px;
}
.ssse-trume-link1 {
display: contents;
}
.ssse-trume-hintergrund {
width: 200px;
}
.ssse-trume-hintergrund1 {
color: rgb(12, 16, 12);
font-size: 20px;
font-style: normal;
font-family: Poppins;
font-weight: 500;
line-height: 24px;
}
.ssse-trume-link2 {
display: contents;
}
2024-04-26 21:57:02 +02:00
.ssse-trume-infos-sc {
2024-04-26 21:56:58 +02:00
width: 200px;
}
2024-04-26 21:57:02 +02:00
.ssse-trume-infos-sc1 {
2024-04-26 21:56:58 +02:00
color: rgb(12, 16, 12);
font-size: 20px;
font-style: normal;
font-family: Poppins;
font-weight: 500;
line-height: 24px;
}
.ssse-trume-link3 {
display: contents;
}
.ssse-trume-anklageschrift {
width: 200px;
}
.ssse-trume-anklageschrift1 {
color: rgb(12, 16, 12);
font-size: 20px;
font-style: normal;
font-family: Poppins;
font-weight: 500;
line-height: 24px;
}
.ssse-trume-link4 {
display: contents;
}
.ssse-trume-gerichtsordnung {
width: 200px;
}
.ssse-trume-gerichtsordnung1 {
color: rgb(12, 16, 12);
font-size: 20px;
font-style: normal;
font-family: Poppins;
font-weight: 500;
line-height: 24px;
}
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;
2024-04-26 21:56:57 +02:00
font-style: normal;
2024-04-26 21:56:56 +02:00
text-align: center;
2024-04-26 21:56:56 +02:00
}
}
</style>