modif css
This commit is contained in:
parent
c43fa6a18a
commit
02e00a9be7
4 changed files with 16 additions and 4 deletions
|
@ -7,7 +7,10 @@ body {
|
|||
padding: 60px;
|
||||
}
|
||||
|
||||
output{
|
||||
font-size: 50px;
|
||||
|
||||
}
|
||||
|
||||
button {
|
||||
padding: 18px 35px;
|
||||
|
@ -46,4 +49,8 @@ table.table_magasin{
|
|||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
color: #fda500;
|
||||
}
|
|
@ -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;
|
||||
}
|
||||
|
@ -55,4 +56,8 @@ table.table_magasin{
|
|||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
a{
|
||||
color: #fda500;
|
||||
}
|
|
@ -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>
|
||||
|
|
|
@ -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'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue