Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
b8d2df33a0
5 changed files with 20 additions and 6 deletions
10
src/App.vue
10
src/App.vue
|
@ -50,6 +50,16 @@
|
||||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Comfortaa';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
font-display: swap;
|
||||||
|
src: local('Comfortaa'), local('Comfortaa-Regular'), url(./assets/fonts/comfortaa.woff2) format('woff2');
|
||||||
|
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* disables the rectangle feedback box when tapping something on a mobile device */
|
/* disables the rectangle feedback box when tapping something on a mobile device */
|
||||||
* {
|
* {
|
||||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||||
|
|
BIN
src/assets/fonts/comfortaa.woff2
Normal file
BIN
src/assets/fonts/comfortaa.woff2
Normal file
Binary file not shown.
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
#information {
|
#information {
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin-top: 5%;
|
||||||
padding: 5%;
|
padding: 5%;
|
||||||
font-size: 0.8em;
|
font-size: 0.8em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="questionnaire">
|
<div class="questionnaire">
|
||||||
<img id="back-button" v-if="$route.params.id != 0" v-on:click="goBack()" src="../assets/arrow-circle-left-outline.svg">
|
<img id="back-button" v-on:click="goBack()" src="../assets/arrow-circle-left-outline.svg">
|
||||||
<div id="status-bar-wrapper">
|
<div id="status-bar-wrapper">
|
||||||
<div class="progress">
|
<div class="progress">
|
||||||
<div v-bind:key="n" v-for="n in $store.state.questions.length" v-bind:class="getDotClass(n)"></div>
|
<div v-bind:key="n" v-for="n in $store.state.questions.length" v-bind:class="getDotClass(n)"></div>
|
||||||
|
@ -32,6 +32,9 @@
|
||||||
const previousQuestion = parseInt(this.$route.params.id) - 1
|
const previousQuestion = parseInt(this.$route.params.id) - 1
|
||||||
this.$router.push("/questionnaire/" + previousQuestion)
|
this.$router.push("/questionnaire/" + previousQuestion)
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
this.$router.push("/")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,10 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="results">
|
<div class="results">
|
||||||
<p>Ihre Wahrscheinlichkeit sich zu infizieren ist</p>
|
<p>Ihr Risiko sich und andere zu infizieren ist</p>
|
||||||
<p class="risk-chance alert" v-if="risk >= 66">hoch</p>
|
<p class="risk-chance alert" v-if="risk >= 66">hoch</p>
|
||||||
<p class="risk-chance warning" v-if="risk >= 33 && risk < 66">durchschnittlich</p>
|
<p class="risk-chance warning" v-if="risk >= 33 && risk < 66">durchschnittlich</p>
|
||||||
<p class="risk-chance success" v-if="risk < 33 && risk >= 0">niedrig</p>
|
<p class="risk-chance success" v-if="risk < 33 && risk >= 0">niedrig</p>
|
||||||
<p class="risk-chance" v-if=" risk < 0">nicht feststellbar</p>
|
<p class="risk-chance" v-if=" risk < 0">nicht feststellbar</p>
|
||||||
<p class="text-center"><router-link style="text-decoration:none" to="/">
|
|
||||||
Zurück zum Anfang
|
|
||||||
</router-link></p>
|
|
||||||
<p v-if="bad.length > 0">Auf Folgendes sollten Sie achten:</p>
|
<p v-if="bad.length > 0">Auf Folgendes sollten Sie achten:</p>
|
||||||
<div v-for="card in bad" v-bind:key="card.description" class="card-advice alert">
|
<div v-for="card in bad" v-bind:key="card.description" class="card-advice alert">
|
||||||
<div class="card-advice-title">{{ card.title }}</div>
|
<div class="card-advice-title">{{ card.title }}</div>
|
||||||
|
@ -23,6 +20,9 @@
|
||||||
<div class="card-advice-title">{{ card.title }}</div>
|
<div class="card-advice-title">{{ card.title }}</div>
|
||||||
<div class="card-advice-description">{{ card.description }}</div>
|
<div class="card-advice-description">{{ card.description }}</div>
|
||||||
</div>
|
</div>
|
||||||
|
<p class="text-center"><router-link to="/">
|
||||||
|
Zurück zum Anfang
|
||||||
|
</router-link></p>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -115,6 +115,7 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
font-family: Comfortaa;
|
||||||
}
|
}
|
||||||
.risk-chance.success {
|
.risk-chance.success {
|
||||||
color: #62E160;
|
color: #62E160;
|
||||||
|
|
Loading…
Reference in a new issue