You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae_2a_anglais/Project/php/css/memory.css

43 lines
822 B

body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin-left: 15vh;
margin-right: 15vh;
}
#memory-game {
display: grid;
grid-template-columns: repeat(7, 1fr);
grid-template-rows: repeat(4, 140px); /* Hauteur fixe pour chaque carte, ajustez si nécessaire */
gap: 10px;
}
.card {
width: 100%;
height: 100%;
background-color: #fff;
border: 2px solid #ccc;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.card.flipped {
background-color: #f0f0f0;
}
.card.found {
background-color: #8aff8a;
cursor: default;
}
.center-text {
text-align: center;
}