Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,16 +1,53 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
#
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
margin: 0;
|
| 3 |
+
padding: 0;
|
| 4 |
+
overflow: hidden; /* Evita scroll */
|
| 5 |
+
background-color: #333;
|
| 6 |
+
touch-action: none; /* Crucial para juegos m贸viles */
|
| 7 |
+
user-select: none;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
#game-container {
|
| 11 |
+
width: 100vw;
|
| 12 |
+
height: 100vh;
|
| 13 |
+
position: fixed;
|
| 14 |
+
top: 0;
|
| 15 |
+
left: 0;
|
| 16 |
+
}
|
| 17 |
+
|
| 18 |
+
/* 馃摫 ESTILOS DE LOS BOTONES */
|
| 19 |
+
#mobile-controls {
|
| 20 |
+
position: absolute;
|
| 21 |
+
bottom: 20px;
|
| 22 |
+
right: 20px; /* Botones a la derecha */
|
| 23 |
+
z-index: 100;
|
| 24 |
+
display: flex;
|
| 25 |
+
flex-direction: column;
|
| 26 |
+
align-items: center;
|
| 27 |
+
gap: 10px;
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
.control-row {
|
| 31 |
+
display: flex;
|
| 32 |
+
gap: 10px;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
.game-btn {
|
| 36 |
+
width: 60px;
|
| 37 |
+
height: 60px;
|
| 38 |
+
background-color: rgba(255, 255, 255, 0.3);
|
| 39 |
+
border: 2px solid rgba(255, 255, 255, 0.6);
|
| 40 |
+
border-radius: 50%;
|
| 41 |
+
font-size: 24px;
|
| 42 |
+
color: white;
|
| 43 |
+
cursor: pointer;
|
| 44 |
+
/* Evita que el navegador haga zoom al tocar r谩pido */
|
| 45 |
+
touch-action: manipulation;
|
| 46 |
+
display: flex;
|
| 47 |
+
justify-content: center;
|
| 48 |
+
align-items: center;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
.game-btn:active {
|
| 52 |
+
background-color: rgba(0, 255, 0, 0.5); /* Verde al presionar */
|
| 53 |
+
}
|