-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
411 lines (348 loc) · 9.97 KB
/
style.css
1
2
3
4
5
6
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
/* General Body Styling */
.centered {
display: flex;
justify-content: center;
align-items: center;
height: 2vh; /* This makes it take up the full viewport height */
text-align: center; /* Centers text inside the container */
}
.game-section {
background: radial-gradient(circle, #2a0244, #5e0f86);
padding: 30px;
font-family: 'Press Start 2P', sans-serif;
color: #ffffff;
text-align: center;
box-shadow: 0 0 20px #ff6600;
}
h2 {
font-size: 2em;
color: #ffcc00;
text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff6600;
margin-bottom: 20px;
}
.card-container {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 20px;
}
.player-card {
background: #3b065e;
border: 3px solid #ffcc00;
border-radius: 15px;
box-shadow: 0 0 15px #ff6600;
padding: 20px;
width: 300px;
text-align: center;
}
.card-title {
font-size: 1.5em;
color: #ffcc00;
text-shadow: 0 0 10px #ff6600, 0 0 20px #ffcc00;
margin-bottom: 10px;
}
.card-image img {
width: 50%;
height: auto;
border-radius:15px;
margin-bottom: 15px;
}
.card-description {
font-size: 1.1em;
margin-bottom: 15px;
color: #e0e0e0;
}
.strengths,
.weaknesses {
list-style: none;
padding: 0;
margin: 10px 0;
}
.strengths li,
.weaknesses li {
font-size: 1.1em;
color: #05ac66; /* Green for strengths */
}
.weaknesses li {
color: #9c0b0b; /* Red for weaknesses */
}
.legend-section {
background: radial-gradient(circle, #8b28e4, #2a0244); /* Vibrant purple to deep violet for mystical effect */
border: 4px solid #0b24c7; /* Blue border for thematic contrast */
border-radius: 20px; /* Softer, more elegant rounding */
padding: 5px 25px 25px 25px;;
font-family: 'Press Start 2P', sans-serif;
font-size: 14px;
color: #ffffff; /* White text for strong readability */
max-width: 800px;
margin: 10px auto;
box-shadow: 0 0 25px #4db9f8; /* Blue glow for magical emphasis */
}
.legend-title {
text-align: center;
font-size: 2em; /* Larger for prominence */
color: #1d0c59; /* Deep blue for emphasis */
text-shadow: 0 0 10px #15d7e5, 0 0 20px #07a4ff; /* Bright blue glow */
margin-bottom: 25px;
}
.legend-content {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 20px; /* Space between icon and text */
text-align: left;
}
.legend-icon img {
width: 80px; /* Slightly larger for emphasis */
height: 80px;
border-radius: 50%; /* Circular icon for a polished look */
border: 6px solid #180968; /* Deep blue border */
box-shadow: 0 0 15px #1bc0e6; /* Glow effect to highlight the deception */
}
.legend-intro {
font-size: 1.1em;
color: #e0e0e0; /* Light gray for softer readability */
line-height: 1.6; /* Improve readability */
margin: 0;
}
.deception-icon {
text-align: center;
margin-bottom: 20px;
}
.deception-icon img {
width: 70px; /* Adjust icon size */
height: 70px;
border-radius: 50%; /* Circular icon */
border: 3px solid #0b0ec9; /* Golden border to emphasize */
padding: 0px;
}
.illusion-summary {
text-align: center;
font-size: 1.2em;
font-style: italic;
margin-top: 15px;
color: #1ce08e; /* Bright green for emphasis */
}
.illusion-section {
background: radial-gradient(circle, #8b28e4, #2a0244); /* Vibrant purple to deep violet for mystical effect */
border: 4px solid #0b24c7; /* Blue border for thematic contrast */
border-radius: 20px; /* Softer, more elegant rounding */
padding: 25px;
font-family: 'Press Start 2P', sans-serif;
font-size: 14px;
color: #ffffff; /* White text for strong readability */
max-width: 800px;
margin: 30px auto;
box-shadow: 0 0 25px #4db9f8; /* Blue glow for magical emphasis */
}
.illusion-section h3 {
text-align: center;
font-size: 2em; /* Larger for more prominence */
color: #1d0c59; /* Bright yellow for a magical glow */
text-shadow: 0 0 10px #15d7e5, 0 0 20px #07a4ff; /* Golden glow for mystic effect */
margin-bottom: 25px;
}
.deception-icon img {
width: 80px; /* Slightly larger for more emphasis */
height: 80px;
border-radius: 50%; /* Circular icon for a polished look */
border: 6px solid #180968; /* Golden border for magic */
box-shadow: 0 0 15px #1bc0e6; /* Glow effect to highlight the deception */
}
.illusion-intro {
text-align: justify;
font-size: 1.1em;
color: #e0e0e0; /* Light gray for softer readability */
margin-bottom: 20px;
}
.illusion-paths {
color: #b9e8ff; /* Soft blue for better harmony with the theme */
list-style: none;
padding: 0;
font-family: 'Poppins', sans-serif;
font-size: 1rem;
line-height: 1.6; /* Improve readability */
margin-bottom: 15px;
}
.ornate-dialogue {
display: flex;
align-items: center;
background: #5e0f86; /* Deep purple background */
border: 4px solid #b9417d; /* Bright pink border */
padding: 15px;
font-family: 'VT323', sans-serif; /* Retro pixel font */
font-size: 20px;
color: #e78a3f; /* Retro orange text */
max-width: 700px;
margin: 20px auto;
border-radius: 10px; /* Slightly rounded corners */
box-shadow: 0 0 15px #e01ca2; /* Glowing pink effect */
position: relative;
}
.portrait-frame {
flex: 0 0 100px; /* Fixed size for portrait */
background: #340560; /* Dark purple placeholder for portrait */
border: 4px solid#b9417d; /* Pink border */
margin-right: 15px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px; /* Rounded portrait corners */
}
.portrait-frame img {
width: 100px; /* Ensure consistent size */
height: 100px;
object-fit: cover; /* Maintain aspect ratio */
border-radius: 8px; /* Slight rounding for image */
}
.text-frame {
flex: 1; /* Text takes up remaining space */
background: #3b065e; /* Darker purple for text frame */
border: 4px solid #b9417d; /* Pink border for text box */
padding: 10px;
border-radius: 10px; /* Rounded text box corners */
position: relative;
color: #ffffff; /* White text for contrast */
}
.character-name {
font-size: 16px; /* Name slightly larger */
font-family: 'Press Start 2P', sans-serif; /* Retro pixel font */
margin-bottom: 5px;
color: #ff99cc; /* Bright pink for the name */
text-align: center; /* Center-align name */
text-transform: uppercase; /* Uppercase for retro feel */
}
.divider {
border: none;
border-top: 2px solid #b9417d; /* Subtle pink line */
margin: 5px 0; /* Space around the line */
}
.dialogue-text {
margin: 0;
line-height: 1.6; /* Improve readability */
font-size: 12px; /* Smaller text for dialogue */
color: #e78a3f; /* Orange text for retro aesthetic */
}
.retro-box {
background: #5e0f86; /* Teal background */
color: #e78a3f; /* Black text for contrast */
border: 4px solid #b9417d;
padding: 10px;
font-family: 'Press Start 2P', sans-serif; /* Retro pixel font */
font-size: 12px; /* Smaller text size for retro feel */
max-width: 600px; /* Adjust width to fit content */
margin: 20px auto; /* Center the box */
position: relative; /* For potential pseudo-elements or overlays */
display: flex; /* Side-by-side layout for image and text */
align-items: center; /* Vertically align image and text */
box-shadow: 0 0 10px #e01ca2; /* Glowing border effect */
border-radius: 8px; /* Optional rounded corners */
}
.image-container {
flex: 0 0 80px; /* Fixed width for the image */
margin-right: 10px; /* Space between the image and text */
}
.image-container img {
width: 90px; /* Match the fixed width */
height: 90px; /* Ensure the image is square */
object-fit: cover; /* Maintain proportions */
border: 2px solid #b9417d; /* Add a white border around the image */
border-radius: 20%; /* Make the image circular */
}
.text-container {
flex: 1; /* Take the remaining space for the text */
}
.text-container p {
margin: 0;
line-height: 1.5; /* Improve text spacing */
color: #ffffff; /* Ensure text is white */
}
body {
font-family: 'Poppins', sans-serif;
background: #340560;
margin: 0;
padding: 0;
color: #ffcc00;
display: flex;
justify-content: center;
align-items: flex-start; /* Allow content to grow vertically */
min-height: 100vh;
cursor: url('https://pixelartmaker-data-78746291193.nyc3.digitaloceanspaces.com/image/82ef76196b64dcf.png'), auto;
}
@keyframes background-scroll {
from {
background-position: 0 0;
}
to {
background-position: 50px 50px;
}
}
/* Screen Frame Styling */
.screen {
background: linear-gradient(to bottom, #440092, #a328f5);
border: 8px solid #dc77e3;
border-radius: 20px;
box-shadow: 0 0 10px #4e2a84;
width: 95%;
max-width: 1000px;
height: auto; /* Adjust height to content */
padding: 20px;
text-align: left;
margin: 20px auto; /* Center with space on top */
}
.title {
font-family: 'Press Start 2P', sans-serif;
font-size: 2.5rem;
color: #ffcc00;
text-shadow: 0 0 10px #ffcc00, 0 0 20px #ff6600, 0 0 30px #ff3300;
margin-bottom: 20px; /* Add space below the title */
text-align: center;
animation: flicker 1.5s infinite;
}
@keyframes flicker {
0% { opacity: 1; }
50% { opacity: 0.9; text-shadow: 0 0 5px #ffcc00, 0 0 15px #ff6600; }
100% { opacity: 1; }
}
/* Section Styling */
.section {
margin-bottom: 20px; /* Add space between sections */
padding: 10px;
}
.section h2 {
font-family: 'Press Start 2P', sans-serif;
font-size: 1.5rem;
color: #ff99cc;
text-shadow: 0 0 10px #ff99cc, 0 0 20px #ff66cc;
margin-bottom: 10px;
}
.section p {
font-family: 'Poppins', sans-serif;
font-size: 1rem;
line-height: 1.6; /* Improve text spacing */
color: #ffffff;
}
.section ul {
font-family: 'Poppins', sans-serif;
font-size: 1rem;
line-height: 1.6;
color: #ffffff;
padding-left: 20px;
}
/* Footer */
footer {
margin-top: 20px;
font-size: 0.8rem;
color: #ffffff;
text-align: center;
}
/* Retro Pixel Sprites */
.sprite {
position: absolute;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
background-image: url('https://upload.wikimedia.org/wikipedia/commons/3/38/Heart_pixel_art.gif');
background-size: cover;
}