version mardi spoir

This commit is contained in:
2024-12-24 19:04:32 +01:00
parent d185b9a7f3
commit bfe292cb59
4 changed files with 133 additions and 24 deletions

View File

@@ -78,4 +78,20 @@ html, body {
transform: scale(1); /* Taille normale */
opacity: 1; /* Visible */
}
}
#mot-forme {
font-size: 18px;
font-weight: bold;
color: #000; /* Noir */
text-align: center;
background-color: rgba(255, 255, 255, 0.5); /* Blanc semi-transparent */
padding: 10px;
border-radius: 5px; /* Coins arrondis */
position: absolute; /* Position absolue */
top: 10px; /* Distance depuis le haut de la zone */
left: 10%; /* Centrer horizontalement */
transform: translateX(-50%); /* Centrer réellement en prenant en compte la largeur */
z-index: 10; /* S'assurer que l'élément est par-dessus les autres */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optionnel : ajout d'une ombre */
}