lord6ablo commited on
Commit
0856165
1 Parent(s): e808156

Delete index.css

Browse files
Files changed (1) hide show
  1. index.css +0 -329
index.css DELETED
@@ -1,329 +0,0 @@
1
- html {
2
- font-family: "Inter", sans-serif;
3
- }
4
-
5
- body {
6
- margin: 0;
7
- <<<<<<< HEAD
8
- padding: 0;
9
- overflow-x: hidden; /* Enable scrolling on the y-axis */
10
- =======
11
- display: flex;
12
- flex-direction: column;
13
- >>>>>>> 58d66b5f5888eeb66f0ca862510b029273126702
14
- }
15
-
16
- /* GTA Text */
17
- h1 {
18
- text-shadow: 0 0 0.125em rgb(192 38 211 / 0.5), 0 0 0.45em currentColor;
19
- }
20
- /* Vice City Text */
21
- h2 {
22
- font-family: "Satisfy", cursive;
23
- text-shadow: 0 0 0.125em rgb(192 38 211 / 0.5), 0 0 0.45em currentColor;
24
- }
25
-
26
- <<<<<<< HEAD
27
- #backgroundVideo video {
28
- position: absolute;
29
- top: 0;
30
- left: 0;
31
- width: 100%;
32
- height: 100vh; /* Adjust the height as needed */
33
- object-fit: cover;
34
- }
35
-
36
- #backgroundVideo {
37
- position: fixed;
38
- top: 0;
39
- left: 0;
40
- width: 100%;
41
- height: 100vh; /* Adjust the height as needed */
42
- }
43
-
44
- #placeholder {
45
- position: relative;
46
- left: 0;
47
- width: 100%;
48
- height: 75vh; /* Adjust the height as needed */
49
- background-color: transparent; /* Set the background color to transparent */
50
- z-index: 20; /* Place the background behind other elements */
51
- }
52
-
53
- =======
54
- >>>>>>> 58d66b5f5888eeb66f0ca862510b029273126702
55
- div #logo_container::before {
56
- z-index: 20;
57
- content: "";
58
- width: 100%;
59
- height: 100%;
60
- top: 157%;
61
- left: 0;
62
- position: absolute;
63
- transform: perspective(1em) rotateX(40deg) scale(1, 0.35);
64
- }
65
-
66
- .container {
67
- position: relative;
68
- z-index: 20;
69
- }
70
-
71
- #videoElement {
72
- opacity: 0;
73
- <<<<<<< HEAD
74
- width: 80%;
75
- transition: opacity 3s ease-in-out;
76
- margin-top: 155px;
77
-
78
- =======
79
- transition: opacity 3s ease-in-out;
80
- >>>>>>> 58d66b5f5888eeb66f0ca862510b029273126702
81
- }
82
-
83
- #videoElement.fade-in {
84
- opacity: 1;
85
- <<<<<<< HEAD
86
- =======
87
- margin-top: 155px;
88
- >>>>>>> 58d66b5f5888eeb66f0ca862510b029273126702
89
-
90
- }
91
-
92
- .fade-out {
93
- opacity: 0.09;
94
- <<<<<<< HEAD
95
- transition: opacity 16s ease-in-out;
96
- }
97
-
98
- /* Modern React Native Design Principles */
99
- /* 1. Minimalistic Design */
100
-
101
- #playPauseBtn {
102
- background-color: #ffea8c;
103
- opacity: 35;
104
- border-radius: 50%;
105
- width: 50px;
106
- height: 50px;
107
- display: flex;
108
- justify-content: center;
109
- align-items: center;
110
- transition: background-color 0.2s ease;
111
- }
112
-
113
- #playPauseBtn img {
114
- width: 30px;
115
- height: 30px;
116
- }
117
-
118
- #playPauseBtn:active {
119
- background-color: #b1b1b186;
120
- transition: background-color 0.2s ease;
121
- }
122
-
123
- #playPauseBtn:active img {
124
- transform: scale(1.2);
125
- transition: transform 0.2s ease;
126
- }
127
-
128
- #playPauseBtn:active::after {
129
- content: '';
130
- display: block;
131
- position: absolute;
132
- width: 50px;
133
- height: 50px;
134
- background-color: rgb(218, 0, 0);
135
- border-radius: 50%;
136
- animation: ripple 0.4s linear;
137
- }
138
-
139
-
140
- @keyframes ripple {
141
- 0% {
142
- transform: scale(0);
143
- opacity: 1;
144
- }
145
- 100% {
146
- transform: scale(2.5);
147
- opacity: 0;
148
- }
149
- }
150
-
151
- /* Add a floating up and down animation */
152
- @keyframes floatUpDown {
153
- 0% {
154
- transform: translateY(0);
155
- }
156
- 50% {
157
- transform: translateY(-15px);
158
- }
159
- 100% {
160
- transform: translateY(0);
161
- }
162
- }
163
-
164
- #playPauseBtn:not(:hover) {
165
- animation: floatUpDown 5s ease-in-out infinite;
166
- }
167
-
168
- /* Tooltip */
169
- #playPauseBtn .tooltip-text {
170
- visibility: hidden;
171
- width: 120px;
172
- background-color: #555;
173
- color: #fff;
174
- text-align: center;
175
- border-radius: 6px;
176
- padding: 5px 0;
177
- position: absolute;
178
- z-index: 1;
179
- bottom: 125%;
180
- left: 50%;
181
- margin-left: -60px;
182
- opacity: 0;
183
- transition: opacity 0.3s;
184
- }
185
-
186
- #playPauseBtn:hover .tooltip-text {
187
- visibility: visible;
188
- opacity: 1;
189
- }
190
-
191
- #playPauseBtn .tooltip-text::after {
192
- content: "";
193
- position: absolute;
194
- top: 100%;
195
- left: 50%;
196
- margin-left: -5px;
197
- border-width: 5px;
198
- border-style: solid;
199
- border-color: #555 transparent transparent transparent transparent;
200
- }
201
-
202
- /* Style the scrollbar */
203
- ::-webkit-scrollbar {
204
- width: 5px; /* Adjust the width as needed */
205
- height: 12px; /* Adjust the height as needed */
206
- }
207
-
208
- ::-webkit-scrollbar-track {
209
- background: transparent; /* Set the background color of the scrollbar track */
210
- border-radius: 10px; /* Adjust the border radius as needed */
211
- }
212
-
213
- ::-webkit-scrollbar-thumb {
214
- background: #888888; /* Set the background color of the scrollbar thumb */
215
- border-radius: 12px; /* Adjust the border radius as needed */
216
- }
217
-
218
- /* Responsive styles */
219
- =======
220
- transition: opacity 8s ease-in-out;
221
- }
222
-
223
- /* Example responsive styles */
224
- >>>>>>> 58d66b5f5888eeb66f0ca862510b029273126702
225
- @media (max-width: 768px) {
226
- #playPauseBtn {
227
- width: 40px;
228
- height: 40px;
229
- }
230
-
231
- #playPauseBtn img {
232
- width: 25px;
233
- height: 25px;
234
- }
235
- }
236
-
237
- @media (max-width: 480px) {
238
- #playPauseBtn {
239
- width: 30px;
240
- height: 30px;
241
- }
242
-
243
- #playPauseBtn img {
244
- width: 20px;
245
- height: 20px;
246
- }
247
- }
248
-
249
- <<<<<<< HEAD
250
- @media only screen and (max-width: 768px) {
251
- #backgroundVideo {
252
- height: auto; /* Adjust the height as needed */
253
- min-height: 100vh; /* Adjust the minimum height as needed */
254
- }
255
- }
256
- =======
257
- /* Modern React Native Design Principles */
258
- /* 1. Minimalistic Design */
259
-
260
- #playPauseBtn {
261
- background-color: #00ff40;
262
- opacity: 35;
263
- border-radius: 50%;
264
- width: 50px;
265
- height: 50px;
266
- display: flex;
267
- justify-content: center;
268
- align-items: center;
269
- transition: background-color 0.2s ease;
270
- }
271
-
272
- #playPauseBtn img {
273
- width: 30px;
274
- height: 30px;
275
- }
276
-
277
- #playPauseBtn:active {
278
- background-color: #b1b1b186;
279
- transition: background-color 0.2s ease;
280
- }
281
-
282
- #playPauseBtn:active img {
283
- transform: scale(1.2);
284
- transition: transform 0.2s ease;
285
- }
286
-
287
- #playPauseBtn:active::after {
288
- content: '';
289
- display: block;
290
- position: absolute;
291
- width: 50px;
292
- height: 50px;
293
- background-color: rgb(218, 0, 0);
294
- border-radius: 50%;
295
- animation: ripple 0.4s linear;
296
- }
297
-
298
- @keyframes ripple {
299
- 0% {
300
- transform: scale(0);
301
- opacity: 1;
302
- }
303
- 100% {
304
- transform: scale(2.5);
305
- opacity: 0;
306
- }
307
- }
308
-
309
- /* Add a floating up and down animation */
310
- @keyframes floatUpDown {
311
- 0% {
312
- transform: translateY(0);
313
- }
314
- 50% {
315
- transform: translateY(-15px);
316
- }
317
- 100% {
318
- transform: translateY(0);
319
- }
320
- }
321
-
322
- #playPauseBtn:not(:hover) {
323
- animation: floatUpDown 5s ease-in-out infinite;
324
- }
325
- /* 2. Animations and Transitions */
326
- /* 3. Consistent Typography */
327
- /* 4. Accessibility */
328
- /* 5. Responsive Design */
329
- >>>>>>> 58d66b5f5888eeb66f0ca862510b029273126702