modif css

This commit is contained in:
Justine Beau 2024-12-23 19:27:33 +01:00
parent c43fa6a18a
commit 02e00a9be7
4 changed files with 16 additions and 4 deletions

View file

@ -7,7 +7,10 @@ body {
padding: 60px;
}
output{
font-size: 50px;
}
button {
padding: 18px 35px;
@ -47,3 +50,7 @@ table.table_magasin{
margin-bottom: 10px;
}
a {
color: #fda500;
}

View file

@ -9,9 +9,10 @@ body {
output {
font-size: 30px;
}
button {
padding: 15px 30px;
border: 2px solid #e74c3c;
@ -24,7 +25,7 @@ button {
}
button:hover {
transform: scale(1.1);
transform: scale(1.05);
background-color: #e74c3c;
color: white;
}
@ -56,3 +57,7 @@ table.table_magasin{
margin-bottom: 10px;
}
a{
color: #fda500;
}

View file

@ -23,7 +23,7 @@
</div>
<div id="div_button" style=" display: flex; justify-content: center;">
<div id="div_button" style="display: flex; justify-content: center;" class="bouton_score">
<button id="bouton-prof" onclick="leBoostDuProf()">Le Méga Boost du Prof</button>
</div>

View file

@ -376,7 +376,7 @@ function rendreNombreLisible(n){
ret = Number(n/(10**(3*puiss_mil))).toFixed(2)
// enfin, on rajoute le quantificateur, avec un 's' si on est pas à l'unité
let q = " "+ quantifiers[puiss_mil -1]
let q = " "+ quantifiers[puiss_mil -2]
if(ret != 1){
q +='s'
}