-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
413 lines (340 loc) · 7.52 KB
/
Copy pathstyles.css
File metadata and controls
413 lines (340 loc) · 7.52 KB
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
412
413
/* Body styling */
body {
background-color: #121212;
/* Darker black for a professional look */
color: #ffffff;
font-family: 'Arial', sans-serif;
margin-top: px;
}
/* Heading 1 styling */
h1 {
font-family: 'Trebuchet MS', sans-serif;
text-align: center;
}
/* Heading 2 styling */
h2 {
font-family: 'Trebuchet MS', sans-serif;
}
/* Anchor (Link) styling */
a {
margin: 0;
color: #b7b7b7;
text-decoration: underline;
}
/* Iframe styling */
iframe {
border: 0;
}
.selected {
font-weight: bold;
}
.center {
text-align: center;
}
.disabled {
color: rgba(255, 255, 255, 0.406);
}
/* Info box styling */
.infobox {
margin: 10px;
padding: 15px;
padding-top: 0px;
border-radius: 20px;
background-color: #1a1a1a;
/* Darker black for a professional look */
border: 3px solid #474b4e;
text-align: left;
}
.card {
margin: 10px;
padding: 0px;
padding-top: 0px;
border-radius: 20px;
background-color: #232424;
/* Darker black for a professional look */
border: 3px;
text-align: center;
align-items: center;
overflow: hidden;
margin-bottom: 50px;
}
.card img {
height: 200px;
width: 100%;
padding-right: 5%;
object-fit: cover;
}
.card img.Anchor-Top {
object-position: top;
}
.card .emoji {
height: 200px;
width: 100%;
padding-right: 5%;
display: flex;
justify-content: center;
align-items: center;
font-size: 8rem;
/* Tamaño grande para el emoji */
background-color: #ffffff;
object-fit: scale-down;
/* No aplica a div, pero lo dejamos para imagen si quieres alternar */
user-select: none;
}
.card .text {
padding: 10px;
padding-top: 0px;
}
/* Additional styles for the overlay image */
.overlay-image {
width: 100%;
max-height: 90vh;
overflow: hidden;
margin-top: -10%;
position: relative;
/* Añadido para posicionar correctamente el h1 */
}
.overlay-image img {
width: 100%;
height: auto;
/* Ajustado para mantener la relación de aspecto */
}
.overlay-image h1 {
position: absolute;
top: 50%;
/* Centrado verticalmente */
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 5em;
z-index: 2;
margin-top: 10px;
/* Ajusta este valor según sea necesario */
}
.content-container {
display: flex;
gap: 20px;
max-width: 1200px;
/* Ajusta el ancho máximo según tus necesidades */
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
}
#twitch-embed,
.infobox {
flex: 1;
}
#twitch-embed {
text-align: center;
}
/* Gallery */
.image-container {
gap: 1.4ren;
}
.image-container img {
width: 100%;
margin-bottom: 1rem;
border-radius: 0.7rem;
transition: transform 0.3s ease-in-out;
/* Suaviza la transición */
}
.image-container img:hover {
transform: scale(1.3);
/* Aplica el zoom centrado */
}
.image-container#streams2 img:hover {
transform: scale(1.2);
/* Aplica el zoom centrado */
}
.image-container2 {
display: grid;
grid-template-columns: repeat(3, 1fr);
/* 3 columnas con tamaño igual */
gap: 10px;
/* Espacio entre las imágenes */
margin-top: 20px;
/* Ajuste del margen superior */
}
.image-container2 a {
display: block;
/* Asegura que cada enlace ocupe todo el espacio disponible */
text-align: center;
/* Centra el texto (en caso de haber) dentro del enlace */
}
.SocialImage {
width: 100%;
/* Ocupa todo el ancho disponible en su contenedor */
height: auto;
/* Mantiene la proporción original de la imagen */
max-width: 150px;
/* Establece un ancho máximo para las imágenes */
border-radius: 10px;
/* Añade bordes redondeados para un aspecto más suave */
transition: transform 0.15s ease-in-out;
/* Efecto de transición al hacer hover */
}
.SocialImage:hover {
transform: scale(1.1);
/* Escala ligeramente la imagen al hacer hover */
}
#trucks,
#streams,
#other {
columns: 15rem 2;
}
#streams2 {
columns: 15rem 1;
}
#social {
columns: 100px 3;
}
#imagebox {
width: 80%;
}
.overlay-image {
width: 100%;
max-height: 90vh;
overflow: hidden;
position: relative;
text-align: center;
}
.overlay-image img {
width: 100%;
height: auto;
}
.overlay-image h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 5em;
z-index: 2;
margin: 0;
}
.carousel {
position: relative;
width: 100%;
max-width: 600px;
overflow: hidden;
}
.carousel-inner {
display: flex;
transition: transform 0.5s ease-in-out;
}
.carousel-inner img {
width: 100%;
display: none;
}
.info-wrapper {
display: flex;
gap: 20px;
width: 100%;
}
.info-wrapper75 {
display: flex;
gap: 20px;
width: 75%;
}
/* Media Queries */
@media only screen and (max-width: 1024px) {
.info-wrapper {
flex-direction: column;
}
.content-container {
padding: 10px;
}
.overlay-image h1 {
font-size: 3em;
}
.infobox {
order: 1;
}
}
@media only screen and (min-width: 1025px) {
.info-wrapper {
flex-direction: row;
justify-content: space-between;
}
.infobox {
width: 90%;
}
}
.play {
background: none;
width: 50px;
height: 50px;
position: relative;
text-indent: -9999px;
width: 90%;
background-color: #12cc0f;
margin-left: 5%;
align-items: center;
border-radius: 10px;
}
.play span {
width: 0;
height: 0;
border-top: 15px solid transparent;
border-left: 20px solid #fff;
border-bottom: 15px solid transparent;
position: absolute;
top: 20%;
left: 49%;
}
.try {
display: flex;
/* Establish flex container */
justify-content: center;
/* Center horizontally */
align-items: center;
/* Center vertically */
/* Updated width and height as needed */
width: 90%;
height: 50px;
/* keep or adjust height as desired */
background-color: #0f90cc;
margin-left: 5%;
border-radius: 10px;
transition: 0.3s;
}
.try:hover {
background-color: #1676a3;
}
.try p {
font-size: 1.17em;
color: #ffffff;
}
.card>div>a {
text-decoration: none;
}
a.videoLike.button {
white-space: nowrap;
padding: 10px 15px;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: 0.3s;
width: 400px;
font-size: 1.2em;
margin: 5px;
background-color: #28a745;
text-decoration: none;
line-height: 55px;
}
a.videoLike.button:hover {
background-color: #218838;
}
a.videoLike.button.blue {
background-color: #167b8d;
}
a.videoLike.button.blue:hover {
background-color: #166b7a;
}
h3.videoLike {
color: #28a745;
text-shadow: 1px 1px 2px #000;
font-size: 2em;
text-decoration: none;
}