Compare commits
No commits in common. "6c694d3684bf4a1a59cfc3f8d89873fddb5baeb2" and "2240489424005a3bee90d0f0835717f45fa5f754" have entirely different histories.
6c694d3684
...
2240489424
2 changed files with 8 additions and 37 deletions
|
|
@ -21,11 +21,14 @@
|
||||||
|
|
||||||
<div class="item_nav">
|
<div class="item_nav">
|
||||||
Temps:
|
Temps:
|
||||||
<input id="temps" type="number" value="0" disabled>
|
<input id="temps" type="number" value="000" disabled>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="item_nav">
|
||||||
|
Mines restantes:10
|
||||||
|
</div>
|
||||||
<div class="item_nav">
|
<div class="item_nav">
|
||||||
<a id="options-button" href="#" onclick="options()">Options</a>
|
<button id="options-button" onclick="options()">Options</button>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
|
@ -36,7 +39,7 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- <button id="debut_game" class="game_button" onclick="chrono()">GO!</button>-->
|
<!-- <button id="debut_game" class="game_button" onclick="chrono()">GO!</button>-->
|
||||||
<button id="fin_game" onclick="resetJeu()">Abandon</button>
|
<button id="fin_game" class="game_button" onclick="resetJeu()">Abandon</button>
|
||||||
|
|
||||||
<div id="cookies-popup" class="popup">
|
<div id="cookies-popup" class="popup">
|
||||||
<div id="cookies-popup-content">
|
<div id="cookies-popup-content">
|
||||||
|
|
|
||||||
36
style.css
36
style.css
|
|
@ -1,30 +1,15 @@
|
||||||
#nav_demineur{
|
#nav_demineur{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
||||||
background-color: #2bd7d484;
|
background-color: #2bd7d484;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
border-style: double;
|
border-style: double;
|
||||||
height: 25px;
|
height: 25px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content:flex-start;
|
justify-content:flex-start;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#nav_demineur .item_nav {
|
|
||||||
margin-top: 3px;
|
|
||||||
padding-right: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#nav_demineur a {
|
|
||||||
color: #000000; /* Couleur du texte */
|
|
||||||
text-decoration: none; /* Supprime le soulignement */
|
|
||||||
padding: 5px 10px;
|
|
||||||
border-radius: 5px;
|
|
||||||
transition: background-color 0.7s, color 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#nav_demineur a:hover {
|
|
||||||
background-color: #0039b33b; /* Couleur de fond au survol */
|
|
||||||
color: #fff; /* Couleur du texte au survol */
|
|
||||||
}
|
|
||||||
#body_demineur{
|
#body_demineur{
|
||||||
background-color: #007BFF;
|
background-color: #007BFF;
|
||||||
|
|
||||||
|
|
@ -64,23 +49,6 @@
|
||||||
padding-right: 10px;
|
padding-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#fin_game {
|
|
||||||
background-color: #00c4ff;
|
|
||||||
color: #fff;
|
|
||||||
border: none;
|
|
||||||
padding: 10px 20px;
|
|
||||||
border-radius: 5px;
|
|
||||||
cursor: pointer;
|
|
||||||
margin: 20px auto;
|
|
||||||
display: block;
|
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
|
|
||||||
transition: background-color 0.3s, box-shadow 0.3s;
|
|
||||||
}
|
|
||||||
|
|
||||||
#fin_game:hover {
|
|
||||||
background-color: #0056b3;
|
|
||||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
|
|
||||||
}
|
|
||||||
.popup {
|
.popup {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue