il faudrait ajouter la verification du mot de passe
This commit is contained in:
@@ -15,6 +15,7 @@ html, body {
|
||||
}
|
||||
|
||||
.carte {
|
||||
animation: zoomOut 0.4s ease-out; /* Applique l'animation à chaque carte */
|
||||
position: absolute;
|
||||
width: 15vw; /* Taille des cartes */
|
||||
height: calc(15vw * 1.4); /* Respecte le ratio */
|
||||
@@ -24,6 +25,16 @@ html, body {
|
||||
touch-action: none;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#zone_cartes .carte.zoom-in {
|
||||
transform: scale(1.8) !important;
|
||||
z-index: 20 !important;
|
||||
transition: transform 0.2s ease-in-out !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#emplacements {
|
||||
position: absolute;
|
||||
bottom: 150px; /* Augmente la distance par rapport au bas de l'écran */
|
||||
@@ -56,3 +67,15 @@ html, body {
|
||||
border: 2px solid black;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
/* Animation de zoom */
|
||||
@keyframes zoomOut {
|
||||
from {
|
||||
transform: scale(10); /* Taille initiale (double) */
|
||||
opacity: 0; /* Invisible */
|
||||
}
|
||||
to {
|
||||
transform: scale(1); /* Taille normale */
|
||||
opacity: 1; /* Visible */
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user