Update style.css
Browse files
style.css
CHANGED
@@ -1,75 +1,44 @@
|
|
|
|
1 |
body {
|
2 |
-
padding: 2rem;
|
3 |
-
font-family: "Orbitron", "Arial", sans-serif;
|
4 |
-
background: radial-gradient(circle, #0f2027, #203a43, #2c5364);
|
5 |
-
color: #e0e0e0;
|
6 |
margin: 0;
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
border-radius:
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
.
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
button {
|
48 |
-
display: block;
|
49 |
-
margin: 20px auto 0;
|
50 |
-
padding: 12px 24px;
|
51 |
-
font-size: 14px;
|
52 |
-
color: #00eaff;
|
53 |
-
background: transparent;
|
54 |
-
border: 2px solid #00eaff;
|
55 |
-
border-radius: 8px;
|
56 |
-
cursor: pointer;
|
57 |
-
text-transform: uppercase;
|
58 |
-
box-shadow: 0 0 10px #00eaff, 0 0 20px rgba(0, 255, 255, 0.5);
|
59 |
-
transition: all 0.3s ease;
|
60 |
-
}
|
61 |
-
|
62 |
-
button:hover {
|
63 |
-
background: #00eaff;
|
64 |
-
color: #0f2027;
|
65 |
-
box-shadow: 0 0 20px #00eaff, 0 0 30px rgba(0, 255, 255, 0.7);
|
66 |
-
}
|
67 |
-
|
68 |
-
iframe {
|
69 |
-
width: 100%;
|
70 |
-
height: 400px;
|
71 |
-
border: none;
|
72 |
-
border-radius: 16px;
|
73 |
-
margin-top: 20px;
|
74 |
-
box-shadow: 0 4px 15px rgba(0, 255, 255, 0.5), inset 0 0 10px rgba(0, 255, 255, 0.2);
|
75 |
}
|
|
|
1 |
+
/* General Body Styling */
|
2 |
body {
|
|
|
|
|
|
|
|
|
3 |
margin: 0;
|
4 |
+
padding: 0;
|
5 |
+
background: linear-gradient(90deg, #000428, #004e92);
|
6 |
+
font-family: Arial, sans-serif;
|
7 |
+
overflow: hidden;
|
8 |
+
}
|
9 |
+
|
10 |
+
/* Game Container */
|
11 |
+
.game-container {
|
12 |
+
position: relative;
|
13 |
+
width: 100vw;
|
14 |
+
height: 100vh;
|
15 |
+
border: 3px solid #00ffcc;
|
16 |
+
overflow: hidden;
|
17 |
+
box-shadow: 0 0 20px #00ffcc;
|
18 |
+
}
|
19 |
+
|
20 |
+
/* Ball */
|
21 |
+
.ball {
|
22 |
+
position: absolute;
|
23 |
+
top: 0;
|
24 |
+
left: 50%;
|
25 |
+
width: 20px;
|
26 |
+
height: 20px;
|
27 |
+
background: radial-gradient(circle, #ff00cc, #ff0066);
|
28 |
+
border-radius: 50%;
|
29 |
+
box-shadow: 0 0 15px #ff0066;
|
30 |
+
transform: translate(-50%, -50%);
|
31 |
+
}
|
32 |
+
|
33 |
+
/* Platform */
|
34 |
+
.platform {
|
35 |
+
position: absolute;
|
36 |
+
bottom: 5%;
|
37 |
+
left: 50%;
|
38 |
+
width: 100px;
|
39 |
+
height: 20px;
|
40 |
+
background: linear-gradient(90deg, #00ffcc, #0066ff);
|
41 |
+
border-radius: 10px;
|
42 |
+
box-shadow: 0 0 20px #00ffcc;
|
43 |
+
transform: translateX(-50%);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|