This commit is contained in:
Brunetto Marie 2022-11-30 11:41:58 +01:00
commit 61ae8489f9
2 changed files with 5 additions and 21 deletions

View file

@ -92,6 +92,7 @@
<button type="button" onclick="update(L)">L</button>
</div>
<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(X)">X</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(N)">N</button>
<button type="button" onclick="update(M)">M</button>
<button type="button" onclick="update(K)">SUPPR</button>
<button type="button" onclick="update(L)">ENTER</button>
<button class="suppr" type="button" onclick="Supprimer()">SUPPR</button>
</div>

View file

@ -50,33 +50,17 @@ footer{
display: flex;
flex-wrap: wrap;
position: absolute;
width: 100%;
padding-left: 20px;
padding-right: 20px;
bottom: 0;
left: 0;
right: 0;
padding-top: 30px;
justify-content: space-evenly;
padding-bottom: 30px;
}
.clavier div {
padding-bottom: 5px;
}
.clavier div button {
padding-bottom: 5px;
width: 45px;
height: 45px;
background-color:rgb(99, 45, 23);
border-radius: 5px;
color : white;
font-weight: bold;
font-size:large;
border:none;
}
.clavier div button:hover{
background-color:rgb(75, 24, 15);
color : rgb(245, 230, 230);
}