86 lines
1.4 KiB
CSS
86 lines
1.4 KiB
CSS
#nav_demineur{
|
|
width: 100%;
|
|
|
|
background-color: #2bd7d484;
|
|
border-width: 2px;
|
|
border-style: double;
|
|
height: 25px;
|
|
display: flex;
|
|
justify-content:flex-start;
|
|
|
|
}
|
|
|
|
#body_demineur{
|
|
background-color: #007BFF;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
#jeu{
|
|
|
|
display: flex;
|
|
justify-content: left;
|
|
border-width: 2px;
|
|
border-style: double;
|
|
width: 49%;
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
#grille{
|
|
display : grid;
|
|
grid-template-columns : 50px 50px 50px 50px 50px 50px 50px;
|
|
grid-template-rows : 50px 50px 50px 50px 50px 50px 50px;
|
|
}
|
|
|
|
.item_nav{
|
|
margin-top: 3px;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.popup {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
transition: visibility 0.3s, opacity 0.3s;
|
|
}
|
|
|
|
.popup.show {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
|
|
.popup-content {
|
|
background-color: #fff;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
max-width: 400px;
|
|
width: 100%;
|
|
}
|
|
|
|
#accept-button, #refuse-button {
|
|
background-color: #007BFF;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 10px 20px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
|
|
#refuse-button:hover,#accept-button:hover {
|
|
background-color: #1ecfee;
|
|
|
|
}
|