This commit is contained in:
Lea De-La-Bourdonnaye 2022-11-30 11:46:23 +01:00
commit 93d9337353
2 changed files with 17 additions and 6 deletions

View file

@ -16,8 +16,8 @@
<div class="grille_haut"> <!-- Grille de mots --> <div class="grille_haut"> <!-- Grille de mots -->
<div id="ligne1"> <div id="ligne1">
<div id="case11"></div> <div id="case11">A</div>
<div id="case12"></div> <div id="case12">A</div>
<div id="case13"></div> <div id="case13"></div>
<div id="case14"></div> <div id="case14"></div>
<div id="case15"></div> <div id="case15"></div>
@ -92,6 +92,7 @@
<button type="button" onclick="update(L)">L</button> <button type="button" onclick="update(L)">L</button>
</div> </div>
<div class="line3"> <div class="line3">
<button class="enter" type="button" onclick="Enter()">ENTER</button>
<button type="button" onclick="update(Z)">Z</button> <button type="button" onclick="update(Z)">Z</button>
<button type="button" onclick="update(X)">X</button> <button type="button" onclick="update(X)">X</button>
<button type="button" onclick="update(C)">C</button> <button type="button" onclick="update(C)">C</button>
@ -99,8 +100,7 @@
<button type="button" onclick="update(B)">B</button> <button type="button" onclick="update(B)">B</button>
<button type="button" onclick="update(N)">N</button> <button type="button" onclick="update(N)">N</button>
<button type="button" onclick="update(M)">M</button> <button type="button" onclick="update(M)">M</button>
<button type="button" onclick="update(K)">SUPPR</button> <button class="suppr" type="button" onclick="Supprimer()">SUPPR</button>
<button type="button" onclick="update(L)">ENTER</button>
</div> </div>

View file

@ -1,12 +1,13 @@
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
} }
header{ header{
background-color: white; background-color: white;
text-align: center; text-align: center;
padding-top: 5px; padding-top: 5px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 35px; font-size: 35px;
color:rgb(99, 45, 23); color:rgb(99, 45, 23);
font-weight: bold; font-weight: bold;
@ -37,19 +38,29 @@ section{
border-radius: 5px; border-radius: 5px;
width: 45px; width: 45px;
height: 45px; height: 45px;
color:rgb(99, 45, 23);
font-weight: bold;
font-size:30px;
align-items: center;
} }
footer{ footer{
background-color: rgb(243, 215, 199);
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
position: absolute; position: absolute;
width: 100%;
padding-left: 20px;
padding-right: 20px;
bottom: 0; bottom: 0;
left: 0; left: 0;
right: 0; right: 0;
padding-top: 30px;
justify-content: space-evenly; justify-content: space-evenly;
} }
footer div {
.clavier div {
padding-bottom: 5px; padding-bottom: 5px;
} }