Lucie GOIGOUX 1 year ago
commit cfa6474e3c

@ -1,15 +1,14 @@
body {
font-family: 'Arial', sans-serif;
background-color: #acc2c2;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url("{{base}}/assets/img/nnyc.jpeg");
}
#quiz {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
@ -58,5 +57,5 @@ input {
}
input:hover {
background-color: #8833d2;
background-color: blue;
}

@ -11339,6 +11339,7 @@ body {
background-image: url("../assets/img/portrait_black.png");
}
.device[data-device=iPhoneX][data-orientation=portrait][data-color=black] .button {
display: none;
top: 0%;

@ -5,14 +5,62 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="{{base}}/assets/favicon.ico"/>
<title>Erreur</title>
</head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v6.3.0/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="{{base}}/css/styles.css" rel="stylesheet" />
</head>
<style>
body{
margin-top: 5vh;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #7464a1;
background-image: url("{{base}}/assets/img/nnyc.jpeg");
flex-direction: column;
background-size: cover; /* Ajuster la taille de l'image pour couvrir tout le corps */
background-position: center;
}
.err{
justify-content:center;
color:white;
text-shadow: 0 0 50px black;
}
h1{
display: flex;
justify-content: center;
font-size: 100px;
}
p{
display: flex;
justify-content: center;
font-size: 50px;
}
</style>
<body>
<h1>ERREUR page !!!!!</h1>
<div class="err">
<h1> ERREUR</h1>
{% if dVueEreur is defined %}
{% for value in dVueEreur %}
<p>{{value}}</p>
{% endfor %}
{% endif %}
</div>
</body>
</html>

@ -13,13 +13,24 @@
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="{{base}}/css/styles.css" rel="stylesheet" />
<link href="{{base}}/css/styles.css" rel="stylesheet"/>
<link href="{{base}}/css/quiz.css" rel="stylesheet" />
</head>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url("{{base}}/assets/img/fond_quiz.jpg");
background-size: cover;
background-repeat: no-repeat;
}
</style>
<body>
{% include 'navBar.twig' %}
{% include 'navBar.twig' %}
<section id="quiz">
<h1>{{listName}}</h1>
<div id="questionContainer">

Loading…
Cancel
Save