34307-vm/assets/css/custom.css
2025-10-02 06:18:59 +00:00

109 lines
1.9 KiB
CSS

#scoreboard {
position: absolute;
top: 10px;
left: 50%;
transform: translateX(-50%);
font-size: 40px;
color: white;
font-family: sans-serif;
font-weight: bold;
text-shadow: 2px 2px 4px #000000;
}
#timer {
position: absolute;
top: 60px; /* Below the scoreboard */
left: 50%;
transform: translateX(-50%);
font-size: 30px;
color: white;
font-family: sans-serif;
font-weight: bold;
text-shadow: 2px 2px 4px #000000;
}
#game-over-modal {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
color: white;
font-family: sans-serif;
}
#game-over-content {
text-align: center;
background-color: #333;
padding: 40px;
border-radius: 10px;
}
#game-over-content h2 {
font-size: 50px;
margin-bottom: 20px;
}
#game-over-content p {
font-size: 24px;
margin-bottom: 10px;
}
#restart-button {
margin-top: 20px;
padding: 15px 30px;
font-size: 20px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white;
}
#tutorial-modal {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
justify-content: center;
align-items: center;
color: white;
font-family: sans-serif;
z-index: 100;
}
.modal-content {
text-align: center;
background-color: #333;
padding: 40px;
border-radius: 10px;
}
.modal-content h2 {
font-size: 50px;
margin-bottom: 20px;
}
.modal-content p {
font-size: 20px;
margin-bottom: 15px;
line-height: 1.5;
}
#start-game-btn {
margin-top: 20px;
padding: 15px 30px;
font-size: 20px;
cursor: pointer;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white;
}