Spaces:
Running
Running
Update styles.css
Browse files- styles.css +12 -14
styles.css
CHANGED
|
@@ -82,10 +82,20 @@ header .balance-display {
|
|
| 82 |
}
|
| 83 |
|
| 84 |
/* Game screen styling */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
.game-screen {
|
| 86 |
position: relative;
|
| 87 |
width: 100%;
|
| 88 |
-
aspect-ratio: 16 / 9;
|
| 89 |
border: 2px solid #e63946;
|
| 90 |
border-radius: 10px;
|
| 91 |
overflow: hidden;
|
|
@@ -93,19 +103,7 @@ header .balance-display {
|
|
| 93 |
display: flex;
|
| 94 |
align-items: flex-end;
|
| 95 |
justify-content: flex-start;
|
| 96 |
-
background: #000; /* Fallback
|
| 97 |
-
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
|
| 98 |
-
}
|
| 99 |
-
|
| 100 |
-
/* Updated sky-image styles */
|
| 101 |
-
.sky-image {
|
| 102 |
-
position: absolute;
|
| 103 |
-
top: 0;
|
| 104 |
-
left: 0;
|
| 105 |
-
width: 100%;
|
| 106 |
-
height: 100%;
|
| 107 |
-
object-fit: fill; /* Ensures the image fills the container without distortion */
|
| 108 |
-
z-index: -1;
|
| 109 |
}
|
| 110 |
|
| 111 |
/* Adjusted plane position */
|
|
|
|
| 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%;
|
| 98 |
+
aspect-ratio: 16 / 9;
|
| 99 |
border: 2px solid #e63946;
|
| 100 |
border-radius: 10px;
|
| 101 |
overflow: hidden;
|
|
|
|
| 103 |
display: flex;
|
| 104 |
align-items: flex-end;
|
| 105 |
justify-content: flex-start;
|
| 106 |
+
background: #000; /* Fallback color */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 107 |
}
|
| 108 |
|
| 109 |
/* Adjusted plane position */
|