Add some style

This commit is contained in:
Gabriel Augendre 2021-06-05 08:13:41 +02:00
parent 54b2e8ec8c
commit 8bf67e12bc
5 changed files with 141 additions and 88 deletions

View file

@ -6,16 +6,20 @@
<link rel="stylesheet" href="jeux/assets/style.css"> <link rel="stylesheet" href="jeux/assets/style.css">
</head> </head>
<body> <body>
<h1>Potain de chantier #3</h1> <header>
<h2>Jeux interactifs</h2> <h1>Potain de chantier #3</h1>
<p> </header>
Découvrez les magnifiques moquettes du Cecolyon avec notre série de jeux interactifs ! <main>
</p> <h2>Jeux interactifs</h2>
<ul> <p>
<li><a href="jeux/signal.html">Signal</a></li> Découvrez les magnifiques moquettes du Cecolyon avec notre série de jeux interactifs !
<li><a href="jeux/camel.html">Camel</a></li> </p>
<li><a href="jeux/nature.html">Urbain Nature</a></li> <ul>
</ul> <li><a href="jeux/signal.html">Signal</a></li>
<li><a href="jeux/camel.html">Camel</a></li>
<li><a href="jeux/nature.html">Urbain Nature</a></li>
</ul>
</main>
<footer> <footer>
<p> <p>
Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>. Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>.

View file

@ -1,3 +1,22 @@
html {
height:100%;
box-sizing: border-box;
}
* {
box-sizing: inherit;
}
body {
max-width: 1600px;
margin: 0 auto;
padding: 0 20px;
height:100%;
font-family: Arial, sans-serif;
display: grid;
grid-template-rows: auto 1fr auto;
}
.hidden { .hidden {
display: none; display: none;
} }
@ -9,3 +28,21 @@
.success { .success {
color: green; color: green;
} }
h2 {
margin-top: 0;
}
header h1 {
text-align: center;
}
a {
color: rgb(40,53,131);
}
header {
background-color: rgb(40,53,131);
color: white;
margin-bottom: 20px;
}

View file

@ -6,43 +6,47 @@
<link rel="stylesheet" href="assets/style.css"> <link rel="stylesheet" href="assets/style.css">
</head> </head>
<body> <body>
<h1>Camel</h1> <header>
<nav><a href="..">&laquo; Retour</a></nav> <h1>Camel</h1>
<p> </header>
Jouons donc au jeu des 7 différences avec GSE France ! <main>
</p> <nav><a href="..">&laquo; Retour</a></nav>
<p class="side-by-side"> <p>
<img src="images/camel-2.jpg" width="548" height="619" alt="Moquette" usemap="#map"> Jouons donc au jeu des 7 différences avec GSE France !
<img src="images/camel.jpg" width="548" height="619" alt="Moquette" usemap="#map"> </p>
</p> <p class="side-by-side">
<map id="map" name="map"> <img src="images/camel-2.jpg" width="548" height="619" alt="Moquette" usemap="#map">
<area shape="rect" coords="180,65,226,97" onclick="zone('Chocolat')"> <img src="images/camel.jpg" width="548" height="619" alt="Moquette" usemap="#map">
<area shape="circle" coords="101,439,25" onclick="zone('Logo Citroën')"> </p>
<area shape="poly" coords="323,473,318,478,340,503,346,497" onclick="zone('Tuile rose')"> <map id="map" name="map">
<area shape="poly" coords="192,473,23,566,63,566" onclick="zone('Triangle rose')"> <area shape="rect" coords="180,65,226,97" onclick="zone('Chocolat')">
<area shape="poly" coords="274,352,252,375,259,381,280,358" onclick="zone('Tuile bleue/grise')"> <area shape="circle" coords="101,439,25" onclick="zone('Logo Citroën')">
<area shape="poly" coords="378,226,378,264,441,264,441,316,467,316,468,226" onclick="zone('Zone grise/beige')"> <area shape="poly" coords="323,473,318,478,340,503,346,497" onclick="zone('Tuile rose')">
<area shape="rect" coords="353,324,443,340" onclick="zone('Ligne bleue')"> <area shape="poly" coords="192,473,23,566,63,566" onclick="zone('Triangle rose')">
</map> <area shape="poly" coords="274,352,252,375,259,381,280,358" onclick="zone('Tuile bleue/grise')">
<p> <area shape="poly" coords="378,226,378,264,441,264,441,316,467,316,468,226" onclick="zone('Zone grise/beige')">
Couleurs non contractuelles. <area shape="rect" coords="353,324,443,340" onclick="zone('Ligne bleue')">
</p> </map>
<p> <p>
Score: <span id="counter">0</span>/7<br> Couleurs non contractuelles.
Vous avez déjà trouvé : </p>
</p> <p>
<ol id="found"></ol> Score: <span id="counter">0</span>/7<br>
<p class="failure hidden"></p> Vous avez déjà trouvé :
<p class="success hidden"> </p>
Félicitations ! Vous avez trouvé toutes les différences ! 🎉 <ol id="found"></ol>
(ou bien vous avez frénétiquement cliqué de partout) <p class="failure hidden"></p>
</p> <p class="success hidden">
<script src="assets/jeu.js" type="application/javascript"></script> Félicitations ! Vous avez trouvé toutes les différences ! 🎉
<script src="assets/camel.js" type="application/javascript"></script> (ou bien vous avez frénétiquement cliqué de partout)
</p>
</main>
<footer> <footer>
<p> <p>
Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>. Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>.
</p> </p>
</footer> </footer>
<script src="assets/jeu.js" type="application/javascript"></script>
<script src="assets/camel.js" type="application/javascript"></script>
</body> </body>
</html> </html>

View file

@ -7,27 +7,31 @@
<link rel="stylesheet" href="assets/nature.css"> <link rel="stylesheet" href="assets/nature.css">
</head> </head>
<body> <body>
<h1>Urbain Nature</h1> <header>
<nav><a href="..">&laquo; Retour</a></nav> <h1>Urbain Nature</h1>
<p> </header>
Oh non ! Quelqu'un a laissé les fenêtres ouvertes sur le plateau de la certif et <main>
tout est recouvert de feuilles mortes... Vite ! Prenez votre souris et balayez tout <nav><a href="..">&laquo; Retour</a></nav>
ça ! <p>
</p> Oh non ! Quelqu'un a laissé les fenêtres ouvertes sur le plateau de la certif et
<p class="img-holder"> tout est recouvert de feuilles mortes... Vite ! Prenez votre souris et balayez tout
<img src="images/nature.jpg" id="moquette" width="620" height="652" alt="Moquette"> ça !
</p> </p>
<p class="failure hidden"></p> <p class="img-holder">
<p class="success hidden"> <img src="images/nature.jpg" id="moquette" width="620" height="652" alt="Moquette">
Félicitations ! Le plateau de la certif est maintenant comme neuf ! 🎉 </p>
Vous pouvez être fier de vous ! <p class="failure hidden"></p>
</p> <p class="success hidden">
<script src="assets/jeu.js" type="application/javascript"></script> Félicitations ! Le plateau de la certif est maintenant comme neuf ! 🎉
<script src="assets/nature.js" type="application/javascript"></script> Vous pouvez être fier de vous !
</p>
</main>
<footer> <footer>
<p> <p>
Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>. Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>.
</p> </p>
</footer> </footer>
<script src="assets/jeu.js" type="application/javascript"></script>
<script src="assets/nature.js" type="application/javascript"></script>
</body> </body>
</html> </html>

View file

@ -6,38 +6,42 @@
<link rel="stylesheet" href="assets/style.css"> <link rel="stylesheet" href="assets/style.css">
</head> </head>
<body> <body>
<h1>Signal</h1> <header>
<nav><a href="..">&laquo; Retour</a></nav> <h1>Signal</h1>
<p> </header>
Peter le livreur arrive sur le plateau de la log au niveau du joli point rose <main>
et il doit déposer son colis au bon endroit.<br> <nav><a href="..">&laquo; Retour</a></nav>
Les instructions qui lui sont fournies sont très claires : <p>
</p> Peter le livreur arrive sur le plateau de la log au niveau du joli point rose
<ol> et il doit déposer son colis au bon endroit.<br>
<li></li> Les instructions qui lui sont fournies sont très claires :
<li></li> </p>
<li></li> <ol>
<li></li> <li></li>
</ol> <li></li>
<p> <li></li>
<img src="images/signal.jpg" width="630" height="646" alt="Moquette" usemap="#map"> <li></li>
<map id="map" name="map"> </ol>
<area shape="rect" coords="527,48,585,229" onclick="win()"> <p>
<area shape="rect" coords="0,0,1260,1292" onclick="lose()"> <img src="images/signal.jpg" width="630" height="646" alt="Moquette" usemap="#map">
</map> <map id="map" name="map">
</p> <area shape="rect" coords="527,48,585,229" onclick="win()">
<p class="failure hidden"> <area shape="rect" coords="0,0,1260,1292" onclick="lose()">
Raté ! Les instructions de Peter sont pourtant claires 😉 </map>
</p> </p>
<p class="success hidden"> <p class="failure hidden">
Félicitations ! Vous avez correctement suivi les instructions ! 🎉 Raté ! Les instructions de Peter sont pourtant claires 😉
(ou bien vous avez frénétiquement cliqué de partout) </p>
</p> <p class="success hidden">
<script src="assets/jeu.js" type="application/javascript"></script> Félicitations ! Vous avez correctement suivi les instructions ! 🎉
(ou bien vous avez frénétiquement cliqué de partout)
</p>
</main>
<footer> <footer>
<p> <p>
Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>. Made with &hearts; by <a href="https://gabnotes.org/about-me/">Gabriel Augendre</a>.
</p> </p>
</footer> </footer>
<script src="assets/jeu.js" type="application/javascript"></script>
</body> </body>
</html> </html>