Worms_game / style.css
Andro0s's picture
Update style.css
30e93c6 verified
body {
margin: 0;
padding: 0;
overflow: hidden; /* Evita scroll */
background-color: #333;
touch-action: none; /* Crucial para juegos móviles */
user-select: none;
}
#game-container {
width: 100vw;
height: 100vh;
position: fixed;
top: 0;
left: 0;
}
/* 📱 ESTILOS DE LOS BOTONES */
#mobile-controls {
position: absolute;
bottom: 20px;
right: 20px; /* Botones a la derecha */
z-index: 100;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.control-row {
display: flex;
gap: 10px;
}
.game-btn {
width: 60px;
height: 60px;
background-color: rgba(255, 255, 255, 0.3);
border: 2px solid rgba(255, 255, 255, 0.6);
border-radius: 50%;
font-size: 24px;
color: white;
cursor: pointer;
/* Evita que el navegador haga zoom al tocar rápido */
touch-action: manipulation;
display: flex;
justify-content: center;
align-items: center;
}
.game-btn:active {
background-color: rgba(0, 255, 0, 0.5); /* Verde al presionar */
}