Spaces:
Running
Running
Update styles.css
Browse files- styles.css +12 -11
styles.css
CHANGED
|
@@ -82,16 +82,6 @@ header .balance-display {
|
|
| 82 |
}
|
| 83 |
|
| 84 |
/* Game screen styling */
|
| 85 |
-
.sky-image {
|
| 86 |
-
position: absolute;
|
| 87 |
-
top: 0;
|
| 88 |
-
left: 0;
|
| 89 |
-
width: 100%;
|
| 90 |
-
height: 100%;
|
| 91 |
-
object-fit: fill; /* Ensures the image fits the container */
|
| 92 |
-
z-index: -1;
|
| 93 |
-
}
|
| 94 |
-
|
| 95 |
.game-screen {
|
| 96 |
position: relative;
|
| 97 |
width: 100%;
|
|
@@ -106,6 +96,17 @@ header .balance-display {
|
|
| 106 |
background: #000; /* Fallback color */
|
| 107 |
}
|
| 108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
/* Adjusted plane position */
|
| 110 |
.plane {
|
| 111 |
position: absolute;
|
|
@@ -214,4 +215,4 @@ header .balance-display {
|
|
| 214 |
.controls button {
|
| 215 |
width: 100%;
|
| 216 |
}
|
| 217 |
-
}
|
|
|
|
| 82 |
}
|
| 83 |
|
| 84 |
/* Game screen styling */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
.game-screen {
|
| 86 |
position: relative;
|
| 87 |
width: 100%;
|
|
|
|
| 96 |
background: #000; /* Fallback color */
|
| 97 |
}
|
| 98 |
|
| 99 |
+
/* Sky image styling */
|
| 100 |
+
.sky-image {
|
| 101 |
+
position: absolute;
|
| 102 |
+
top: 0;
|
| 103 |
+
left: 0;
|
| 104 |
+
width: 100%;
|
| 105 |
+
height: 100%;
|
| 106 |
+
object-fit: cover; /* Ensures the image fits the container properly */
|
| 107 |
+
z-index: -1;
|
| 108 |
+
}
|
| 109 |
+
|
| 110 |
/* Adjusted plane position */
|
| 111 |
.plane {
|
| 112 |
position: absolute;
|
|
|
|
| 215 |
.controls button {
|
| 216 |
width: 100%;
|
| 217 |
}
|
| 218 |
+
}
|