fin end quiz

pull/22/head
kevin.modejar 5 months ago
parent bb99f21d99
commit 54c5723964

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

@ -20,6 +20,10 @@ body.light-mode .resultat {
background-color: var(--main-light-other-color); background-color: var(--main-light-other-color);
} }
body.light-mode .suiv img{
filter: invert(100%);
}
/* ====== ECRAN DEFAUT ====== */ /* ====== ECRAN DEFAUT ====== */
h1 { h1 {
@ -28,6 +32,9 @@ h1 {
} }
.resultat { .resultat {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 60vh; height: 60vh;
width: 60vw; width: 60vw;
margin: auto; margin: auto;
@ -35,6 +42,15 @@ h1 {
border-radius: 25px; border-radius: 25px;
} }
.suiv {
align-items: self-end;
width: 1vh;
}
.suiv img {
width: 1vh;
}
/* ====== ECRAN TABLETTE ====== */ /* ====== ECRAN TABLETTE ====== */
@media (max-width: 834px) or (max-aspect-ratio : 1/1){ @media (max-width: 834px) or (max-aspect-ratio : 1/1){

@ -2,7 +2,9 @@
<div class="resultat"> <div class="resultat">
<p> nombre de réponse juste : {{ score }}</p> <p> nombre de réponse juste : {{ score }}</p>
<p> nombre de réponse fausse : {{ 10 - score }}</p> <p> nombre de réponse fausse : {{ 10 - score }}</p>
<a href={{racine}}/quiz/{{ nextquiz }}>qiz suivant</a> <a class="suiv" href="{{racine}}/quiz/{{ nextquiz }}" alt="quiz suivant">
<img src="../images/suivant.png" />
</a>
</div> </div>
</body> </body>
</html> </html>

Loading…
Cancel
Save