Update style.css
Browse files
style.css
CHANGED
@@ -11,7 +11,7 @@ body {
|
|
11 |
.game-container {
|
12 |
position: relative;
|
13 |
width: 100vw;
|
14 |
-
height: 80vh; /* Reduced height
|
15 |
border: 3px solid #00ffcc;
|
16 |
overflow: hidden;
|
17 |
box-shadow: 0 0 20px #00ffcc;
|
@@ -43,6 +43,19 @@ body {
|
|
43 |
transform: translateX(-50%);
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
/* Controls */
|
47 |
.controls {
|
48 |
display: flex;
|
|
|
11 |
.game-container {
|
12 |
position: relative;
|
13 |
width: 100vw;
|
14 |
+
height: 80vh; /* Reduced height for controls */
|
15 |
border: 3px solid #00ffcc;
|
16 |
overflow: hidden;
|
17 |
box-shadow: 0 0 20px #00ffcc;
|
|
|
43 |
transform: translateX(-50%);
|
44 |
}
|
45 |
|
46 |
+
/* Score Board */
|
47 |
+
.score-board {
|
48 |
+
position: absolute;
|
49 |
+
top: 10px;
|
50 |
+
left: 10px;
|
51 |
+
font-size: 1.5em;
|
52 |
+
color: #ffffff;
|
53 |
+
background: rgba(0, 0, 0, 0.5);
|
54 |
+
padding: 10px 20px;
|
55 |
+
border-radius: 10px;
|
56 |
+
box-shadow: 0 0 10px #00ffcc;
|
57 |
+
}
|
58 |
+
|
59 |
/* Controls */
|
60 |
.controls {
|
61 |
display: flex;
|