GarGerry commited on
Commit
ff4924d
·
verified ·
1 Parent(s): 5e8e113

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +41 -72
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
- h1 {
10
- font-size: 24px;
11
- margin-top: 0;
12
- color: #00eaff;
13
- text-transform: uppercase;
14
- text-shadow: 0 0 8px #00eaff, 0 0 15px #00eaff;
15
- text-align: center;
16
- }
17
-
18
- p {
19
- color: #b0bec5;
20
- font-size: 16px;
21
- margin-bottom: 10px;
22
- margin-top: 5px;
23
- line-height: 1.6;
24
- }
25
-
26
- .card {
27
- max-width: 620px;
28
- margin: 0 auto;
29
- padding: 20px;
30
- border: 1px solid rgba(0, 255, 255, 0.3);
31
- border-radius: 16px;
32
- background: linear-gradient(145deg, #112233, #334455);
33
- box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5), inset 0 0 15px rgba(0, 255, 255, 0.1);
34
- text-align: center;
35
- }
36
-
37
- .card:hover {
38
- box-shadow: 0 8px 30px rgba(0, 255, 255, 0.7), inset 0 0 20px rgba(0, 255, 255, 0.2);
39
- transform: scale(1.02);
40
- transition: all 0.3s ease;
41
- }
42
-
43
- .card p:last-child {
44
- margin-bottom: 0;
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
  }