Spaces:
Sleeping
Sleeping
File size: 909 Bytes
3b6bb5e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
/* Bouton pour les contrôles */
.controls-button {
background-color: var(--bg-color);
color: var(--neutral-color);
border: 1px black solid;
border-radius: 5px;
z-index: 30;
padding: 2%;
font-size: 28px; /* Taille de l'icône */
cursor: pointer;
box-shadow: var(--box-shadow);
transition: background-color 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.controls-button:hover {
background-color: var(--primary-color);
}
.info-toggle {
background-color: var(--bg-color);
color: var(--neutral-color);
border: 1px black solid;
border-radius: 5px;
z-index: 30;
padding: 2%;
font-size: 30px; /* Taille globale */
cursor: pointer;
box-shadow: var(--box-shadow);
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease;
} |