Assemblage du menu du jeu et découverte cases améliorée

This commit is contained in:
2024-10-27 20:35:26 +01:00
parent a16742f55f
commit b41d82b5cd
3 changed files with 189 additions and 52 deletions

View File

@@ -49,7 +49,7 @@ a,
.sidenav {
position: fixed;
z-index: 1;
width: 203px; /* 200px is the width of the header vl position */
width: 203px; /* 200px is the width of the header vl position + half the bar */
background-color: #111;
}
@@ -67,16 +67,132 @@ a,
/* PAGE CONTENT */
.main {
margin-top: 40px; /* 60px is the height of the header navbar */
height: calc(100% - 40px);
padding: 2rem 2rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 10px;
align-items: center;
overflow-x: auto;
width: 100%;
height: calc(100% - 40px);
margin-top: 40px; /* 40px is the height of the header navbar */
padding: 2rem;
gap: 20px;
}
/* GAME BOARD */
.space {
display: flex;
justify-content: end; /* Centre les deux éléments horizontalement */
width: 100%;
gap: 20px; /* Ajoute un espacement entre le h1 et le timer */
}
.space h1 {
font-weight: bold;
font-size: 20px;
}
.timer {
text-align: center;
width: 135px;
border-radius: 10px;
border: 2px solid #555;
background-color: #333;
color: white;
font-weight: bold;
font-size: 22px;
}
.menu {
display: flex;
justify-content: space-between; /* Aligne les deux groupes à gauche et à droite */
width: 100%; /* Prend toute la largeur disponible */
margin-top: -5px;
margin-bottom: 10px;
}
.menu button {
cursor: pointer;
height: 36px;
color: white;
border-radius: 10px;
font-size: 16px;
}
.presets {
flex: auto;
display: flex;
align-items: center;
gap: 10px; /* Ajoute un espacement entre les boutons */
}
.presets button {
width: 75px;
height: 50px;
background-color: #3f77ff;
border: 2px solid #7aa0ff;
}
.presets button:hover {
background-color: #1c5dff;
}
.inputs {
display: flex;
align-items: center;
gap: 10px; /* Ajoute un espacement entre les inputs */
margin-right: 20px;
}
.inputs div {
display: flex;
flex-direction: column;
align-items: center;
}
.inputs label {
font-weight: bold;
font-size: 14px;
}
.inputs input {
text-align: center;
width: 80px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
}
.newgame {
width: 135px;
margin-top: 15px;
background-color: #4CAF50;
border: 2px solid #6bdf6f;
}
.newgame:hover {
background-color: #3b8a3f;
}
.grid {
display: grid;
border: 4px solid rgb(65, 65, 65);
}
.row {
display: flex;
}
.cell {
background-color: #f1f1f1;
text-align: center;
color: black;
width: 32px;
height: 32px;
user-select: none;
}
/* FORMATTING AND EFFECTS */
.rounded {
border-radius: 20%;
}