-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
737 lines (690 loc) · 17.6 KB
/
Copy pathstyle.css
File metadata and controls
737 lines (690 loc) · 17.6 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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
:root{
/* --- BACKGROUNDS (Deep tactical dark, but slightly lifted for eye comfort) --- */
--void:#0a0f0d; /* A rich, ultra-dark army slate (not pure black pitch) */
--panel:#131c18; /* Clear container background */
--panel-2:#1a2620; /* Slightly lighter card background for layered depth */
--grid-line:#25382e; /* Boosted contrast so borders cleanly define structural shapes */
/* --- ACCENTS & GLOWS (Vibrant neon terminal tones that cut through the dark) --- */
--phosphor:#4effa2; /* Neon terminal green - highly visible */
--phosphor-dim:#518c68; /* Was way too dark before; now a highly readable mid-tone green */
--amber:#ffb830; /* Clear tactical amber */
--red:#ff6666; /* Sharp warning red */
/* --- FACTIONS (Iconic tones tuned up for dark-mode readability) --- */
--uef:#5caeff;
--cybran:#ff5252;
--aeon:#ffd042;
--seraphim:#4ff0cf;
/* --- TEXT (Maximum readability, crisp contrast) --- */
--text:#f0fbf5; /* Crisp, high-contrast off-white with a hint of mint */
--text-dim:#94b3a1; /* Crisp mid-tone for body text; completely readable against the dark panels */
}
*{box-sizing:border-box;}
body{
margin:0;
font-size:14px;
background: var(--void); /* Fast solid paint optimization path */
color:var(--text);
font-family:'IBM Plex Mono', monospace;
min-height:100vh;
position:relative;
overflow-x:hidden;
}
/* subtle tactical grid backdrop */
body::before{
content:"";
position:fixed;
inset:0;
background-image:
linear-gradient(var(--grid-line) 1px, transparent 1px),
linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
background-size:38px 38px;
opacity:0.4;
pointer-events:none;
z-index:0;
}
.frame{
position:relative;
z-index:1;
max-width:1180px;
margin:0 auto;
padding:22px 20px 80px;
}
/* ===== TOP STATUS BAR ===== */
.statusbar{
display:flex;
justify-content:space-between;
align-items:center;
font-family:'Share Tech Mono', monospace;
font-size:11px;
letter-spacing:0.12em;
color:var(--phosphor-dim);
border:1px solid var(--grid-line);
padding:8px 14px;
margin-bottom:18px;
background:var(--panel);
}
.statusbar .dot{
display:inline-block;
width:7px;height:7px;
border-radius:50%;
background:var(--phosphor);
box-shadow:0 0 8px var(--phosphor);
margin-right:8px;
animation:pulse 2s infinite;
}
@keyframes pulse{
0%,100%{opacity:1;}
50%{opacity:0.4;}
}
/* ===== HEADER / RADAR ===== */
.hero{
position:relative;
border:1px solid var(--grid-line);
background:linear-gradient(180deg, var(--panel) 0%, var(--void) 100%);
padding:36px 30px 30px;
margin-bottom:28px;
overflow:hidden;
}
.hero .corner{position:absolute;width:16px;height:16px;border-color:var(--phosphor);}
.hero .corner.tl{top:8px;left:8px;border-top:2px solid;border-left:2px solid;}
.hero .corner.tr{top:8px;right:8px;border-top:2px solid;border-right:2px solid;}
.hero .corner.bl{bottom:8px;left:8px;border-bottom:2px solid;border-left:2px solid;}
.hero .corner.br{bottom:8px;right:8px;border-top:2px solid;border-right:2px solid;}
.radar{
position:absolute;
top:-60px; right:-60px;
width:220px;height:220px;
border-radius:50%;
border:1px solid var(--phosphor-dim);
opacity:0.4;
}
.radar::before{
content:"";
position:absolute;
inset:26px;
border-radius:50%;
border:1px solid var(--phosphor-dim);
}
.radar::after{
content:"";
position:absolute;
top:50%; left:50%;
width:50%; height:1px;
background:linear-gradient(90deg, var(--phosphor), transparent);
transform-origin:left center;
transform: rotate(45deg);
}
.eyebrow{
font-family:'Share Tech Mono', monospace;
color:var(--amber);
font-size:12px;
letter-spacing:0.3em;
margin-bottom:10px;
}
.hero h1{
font-family:'Share Tech Mono', monospace;
font-size:clamp(28px, 5vw, 46px);
margin:0 0 14px;
color:var(--phosphor);
letter-spacing:0.03em;
text-shadow:0 0 18px rgba(78,255,162,0.2);
}
.hero h1 .cursor{
display:inline-block;
width:0.55em;
background:var(--phosphor);
animation:blink 1s steps(1) infinite;
margin-left:4px;
}
@keyframes blink{50%{opacity:0;}}
.hero p{
max-width:560px;
color:var(--text-dim);
font-size:14px;
line-height:1.6;
margin:0;
}
/* quick links row */
.quicklinks{
display:flex;
gap:10px;
margin-top:22px;
flex-wrap:wrap;
}
.quicklinks a{
font-family:'Share Tech Mono', monospace;
font-size:11px;
letter-spacing:0.1em;
color:var(--phosphor);
text-decoration:none;
border:1px solid var(--phosphor-dim);
padding:8px 14px;
transition:all .2s;
background:rgba(0,0,0,0.2);
}
.quicklinks a:hover{
background:var(--phosphor);
color:var(--void);
box-shadow:0 0 14px rgba(78,255,162,0.4);
}
/* ===== SECTION LABEL ===== */
.section-label{
font-family:'Share Tech Mono', monospace;
font-size:12px;
letter-spacing:0.25em;
color:var(--text-dim);
display:flex;
align-items:center;
gap:12px;
margin:36px 0 16px;
}
.section-label::after{
content:"";
flex:1;
height:1px;
background:var(--grid-line);
}
/* ===== NEWS FEED ===== */
.feed{
display:flex;
flex-wrap:wrap;
gap:18px;
}
.feed > .card{
flex:1 1 300px;
min-width:0;
}
.feed > .card.featured{
flex-basis:100%;
}
.card{
position:relative;
background:var(--panel-2);
border:1px solid var(--grid-line);
padding:18px;
--accent:var(--phosphor);
transition:transform .25s, box-shadow .25s;
}
.card:hover{
transform:translateY(-3px);
box-shadow:0 0 0 1px var(--accent), 0 8px 24px -8px rgba(0,0,0,0.5);
}
.card .corner{position:absolute;width:10px;height:10px;border-color:var(--accent);opacity:0;transition:opacity .25s;}
.card:hover .corner{opacity:1;}
.card .corner.tl{top:-1px;left:-1px;border-top:2px solid;border-left:2px solid;}
.card .corner.br{bottom:-1px;right:-1px;border-bottom:2px solid;border-right:2px solid;}
.card.uef{--accent:var(--uef);}
.card.cybran{--accent:var(--cybran);}
.card.aeon{--accent:var(--aeon);}
.card.seraphim{--accent:var(--seraphim);}
/* ===== FEATURED / LATEST ===== */
.card.featured{
display:flex;
flex-wrap:wrap;
gap:24px;
padding:26px;
background:
linear-gradient(135deg, rgba(255,255,255,0.02), transparent 60%),
var(--panel);
border:1px solid var(--accent);
}
.card.featured .corner{opacity:1;width:14px;height:14px;}
.card.featured .tag{
background:var(--accent);
color:var(--void);
font-weight:600;
}
.card.featured .tag.latest{
background:transparent;
color:var(--accent);
border-style:solid;
margin-right:8px;
animation:pulse 2s infinite;
}
.card.featured h3{
font-size:clamp(20px, 2.4vw, 30px);
line-height:1.25;
margin:0 0 14px;
}
.card.featured p{
font-size:13.5px;
line-height:1.7;
}
.card.featured .meta{
font-size:11px;
}
.card.featured > div:first-child{
flex:1.1 1 320px;
}
.card.featured .visual{
position:relative;
flex:1 1 280px;
min-height:220px;
overflow:hidden;
border:1px solid var(--grid-line);
background:var(--void);
display:flex;
align-items:flex-end;
padding:12px;
box-sizing:border-box;
}
.card.featured .visual img{
position:absolute;
inset:0;
width:100%;
height:100%;
object-fit:cover;
z-index:0;
}
.card.featured .visual::before{
content:"";
position:absolute;
top:10px; left:10px; right:10px; bottom:10px;
border:1px dashed var(--accent);
opacity:0.4;
z-index:2;
}
.card.featured .visual::after{
content:"";
position:absolute;
inset:0;
pointer-events:none;
background:
linear-gradient(rgba(78, 255, 162, 0.08), transparent),
repeating-linear-gradient(0deg, rgba(0,0,0,0.2) 0px, rgba(0,0,0,0.2) 1px, transparent 2px, transparent 4px);
z-index:1;
}
.card.featured .visual .coord{
position:relative;
z-index:3;
font-family:'Share Tech Mono', monospace;
font-size:10px;
color:var(--accent);
letter-spacing:0.1em;
}
@media (max-width:820px){
.card.featured > div:first-child,
.card.featured .visual{
flex-basis:100%;
}
}
.card .tag{
font-family:'Share Tech Mono', monospace;
font-size:10px;
letter-spacing:0.15em;
color:var(--accent);
border:1px solid var(--accent);
display:inline-block;
padding:3px 8px;
margin-bottom:12px;
background:rgba(0,0,0,0.2);
}
.card .meta{
font-size:10px;
color:var(--text-dim);
letter-spacing:0.08em;
margin-bottom:8px;
}
.card h3{
font-family:'Share Tech Mono', monospace;
font-size:16px;
color:var(--text);
margin:0 0 10px;
line-height:1.3;
}
.card p{
font-size:12.5px;
color:var(--text-dim);
line-height:1.6;
margin:0 0 14px;
}
.card .readmore{
font-family:'Share Tech Mono', monospace;
font-size:11px;
letter-spacing:0.1em;
color:var(--accent);
text-decoration:none;
}
.card .readmore::after{content:" →";}
/* ===== CARD THUMBNAIL STYLES ===== */
.card-thumb {
position: relative;
width: 100%;
height: 150px;
margin-bottom: 14px;
overflow: hidden;
border: 1px solid var(--grid-line);
background: var(--void);
display: block;
box-sizing: border-box;
}
.card-thumb img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
max-width: 100%;
}
.card-thumb::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background:
linear-gradient(rgba(110, 231, 163, 0.08), transparent),
repeating-linear-gradient(0deg, rgba(0,0,0,0.2) 0px, rgba(0,0,0,0.2) 1px, transparent 2px, transparent 4px);
z-index: 1;
}
.card:hover .card-thumb img {
opacity: 1;
filter: grayscale(0%) contrast(100%);
transform: scale(1.03);
}
/* ===== TOURNAMENTS TICKER ===== */
.ticker-wrap{
border:1px solid var(--grid-line);
background:var(--panel);
padding:14px 18px;
margin-top:36px;
display:flex;
align-items:center;
gap:16px;
}
.ticker-label{
font-family:'Share Tech Mono', monospace;
font-size:11px;
color:var(--red);
letter-spacing:0.15em;
white-space:nowrap;
}
.ticker-label .dot{
display:inline-block;width:6px;height:6px;border-radius:50%;
background:var(--red);margin-right:6px;
animation:pulse 1.4s infinite;
}
.ticker{
font-size:12.5px;
color:var(--text-dim);
overflow:hidden;
white-space:nowrap;
}
.ticker span{
display:inline-block;
padding-left:100%;
animation:scroll 22s linear infinite;
}
@keyframes scroll{
from{transform:translateX(0);}
to{transform:translateX(-100%);}
}
/* ===== FOOTER NAV ===== */
.footnav{
margin-top:50px;
display:flex;
flex-wrap:wrap;
gap:24px;
border-top:1px solid var(--grid-line);
padding-top:28px;
}
.footnav > div{
flex:1 1 180px;
}
.footnav h4{
font-family:'Share Tech Mono', monospace;
font-size:11px;
letter-spacing:0.2em;
color:var(--amber);
margin:0 0 12px;
}
.footnav a{
display:block;
font-size:12.5px;
color:var(--text-dim);
text-decoration:none;
padding:5px 0;
border-bottom:1px dashed transparent;
}
.footnav a:hover{
color:var(--phosphor);
border-bottom-color:var(--phosphor-dim);
}
@media (max-width:640px){
.hero{padding:26px 18px 22px;}
.radar{display:none;}
}
/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{
width:10px;
height:10px;
}
::-webkit-scrollbar-track{
background:var(--void);
}
::-webkit-scrollbar-thumb{
background:var(--grid-line);
border:1px solid var(--phosphor-dim);
}
::-webkit-scrollbar-thumb:hover{
background:var(--phosphor-dim);
}
/* ===== AUTOMATIC PERFORMANCE FREEZE UTILITY ===== */
.freeze-frame,
.freeze-frame *,
.freeze-frame::before,
.freeze-frame::after {
animation: none !important;
transition: none !important;
transform: none !important;
box-shadow: none !important;
}
/* ===== FULLCALENDAR OVERRIDES (TACTICAL HUD THEME) ===== */
/* ===== ALLOW EVENT TEXT TO WRAP ===== */
.fc-direction-ltr .fc-daygrid-event .fc-event-time,
.fc-direction-ltr .fc-daygrid-event .fc-event-title,
.fc-event-main {
white-space: normal !important; /* Forces text to wrap to the next line */
overflow: visible !important;
text-overflow: clip !important;
word-wrap: break-word !important;
}
/* Ensure the event bar height expands to fit the wrapped text */
.fc-h-event {
height: auto !important;
padding-bottom: 4px !important;
}
.fc {
font-family: 'Share Tech Mono', monospace;
background: var(--panel);
border: 1px solid var(--grid-line);
padding: 20px;
color: var(--text);
}
/* Header toolbar text and button configurations */
.fc .fc-toolbar-title {
font-size: 20px;
letter-spacing: 0.1em;
color: var(--phosphor);
}
.fc .fc-button-primary {
background-color: var(--void);
border-color: var(--grid-line);
color: var(--phosphor-dim);
font-family: 'Share Tech Mono', monospace;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.fc .fc-button-primary:hover,
.fc .fc-button-primary:focus {
background-color: var(--phosphor);
color: var(--void) !important;
border-color: var(--phosphor);
box-shadow: 0 0 10px rgba(78,255,162,0.3);
}
.fc .fc-button-active {
background-color: var(--panel-2) !important;
border-color: var(--phosphor) !important;
color: var(--phosphor) !important;
}
/* Grid borders and cell properties */
.fc th {
background: var(--panel-2);
color: var(--amber);
border-color: var(--grid-line) !important;
padding: 8px 0 !important;
letter-spacing: 0.1em;
}
.fc td {
border-color: var(--grid-line) !important;
}
.fc .fc-day-other {
background: rgba(0, 0, 0, 0.2); /* Dim out-of-month days */
}
.fc .fc-day-today {
background: rgba(78, 255, 162, 0.04) !important; /* Luminous target highlight */
}
/* Inside-grid event bars */
.fc-v-event, .fc-h-event {
background-color: var(--panel-2);
border: 1px solid var(--phosphor-dim);
padding: 2px 4px;
}
.fc-event-title, .fc-event-time {
color: var(--phosphor);
font-size: 11px;
}
.fc-event:hover {
cursor: pointer;
border-color: var(--amber);
}
/* ===== CALENDAR EVENT TYPE COLOR CODING ===== */
/* 1. Patch Deployment — UEF Cyan Blue */
.fc-event.ev-patch {
background-color: rgba(92, 174, 255, 0.15) !important;
border-left: 3px solid var(--uef) !important;
border-top: 1px solid rgba(92, 174, 255, 0.3) !important;
border-right: 1px solid rgba(92, 174, 255, 0.3) !important;
border-bottom: 1px solid rgba(92, 174, 255, 0.3) !important;
}
.fc-event.ev-patch .fc-event-title {
color: var(--uef) !important;
}
/* 2. Tournament — Cybran Warning Red */
.fc-event.ev-tournament {
background-color: rgba(255, 82, 82, 0.15) !important;
border-left: 3px solid var(--cybran) !important;
border-top: 1px solid rgba(255, 82, 82, 0.3) !important;
border-right: 1px solid rgba(255, 82, 82, 0.3) !important;
border-bottom: 1px solid rgba(255, 82, 82, 0.3) !important;
}
.fc-event.ev-tournament .fc-event-title {
color: var(--cybran) !important;
font-weight: 600;
}
/* 3. Game Night — Terminal Neon Green */
.fc-event.ev-gamenight {
background-color: rgba(78, 255, 162, 0.1) !important;
border-left: 3px solid var(--phosphor) !important;
border-top: 1px solid rgba(78, 255, 162, 0.2) !important;
border-right: 1px solid rgba(78, 255, 162, 0.2) !important;
border-bottom: 1px solid rgba(78, 255, 162, 0.2) !important;
}
.fc-event.ev-gamenight .fc-event-title {
color: var(--phosphor) !important;
}
/* 4. Association Meetings — Seraphim Teal/Mint */
.fc-event.ev-meeting {
background-color: rgba(79, 240, 207, 0.12) !important;
border-left: 3px solid var(--seraphim) !important;
border-top: 1px solid rgba(79, 240, 207, 0.2) !important;
border-right: 1px solid rgba(79, 240, 207, 0.2) !important;
border-bottom: 1px solid rgba(79, 240, 207, 0.2) !important;
}
.fc-event.ev-meeting .fc-event-title {
color: var(--seraphim) !important;
}
/* 5. Supcom Steam Sale — Operational Tactical Amber */
.fc-event.ev-sale {
background-color: rgba(255, 184, 48, 0.12) !important;
border-left: 3px solid var(--amber) !important;
border-top: 1px solid rgba(255, 184, 48, 0.2) !important;
border-right: 1px solid rgba(255, 184, 48, 0.2) !important;
border-bottom: 1px solid rgba(255, 184, 48, 0.2) !important;
}
.fc-event.ev-sale .fc-event-title {
color: var(--amber) !important;
}
/* ===== EVENT MODAL OVERLAY ===== */
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(10, 15, 13, 0.85); /* Darkens the rest of the app */
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
}
.modal-box {
background: var(--panel-2);
border: 1px solid var(--phosphor-dim);
width: 90%;
max-width: 480px;
padding: 24px;
position: relative;
box-shadow: 0 0 0 1px var(--phosphor), 0 8px 32px -8px rgba(0,0,0,0.8);
}
.modal-box .corner { position: absolute; width: 14px; height: 14px; border-color: var(--phosphor); }
.modal-box .corner.tl { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.modal-box .corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }
.modal-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 14px;
}
.modal-header h3 {
font-family: 'Share Tech Mono', monospace;
color: var(--phosphor);
margin: 0;
font-size: 20px;
letter-spacing: 0.05em;
}
.close-btn {
background: transparent;
border: none;
color: var(--text-dim);
font-size: 28px;
cursor: pointer;
line-height: 0.8;
padding: 0;
transition: color 0.2s;
}
.close-btn:hover { color: var(--red); }
.modal-body .meta {
font-family: 'Share Tech Mono', monospace;
font-size: 11px;
color: var(--amber);
margin-bottom: 16px;
letter-spacing: 0.1em;
}
.modal-body p {
font-size: 14px;
color: var(--text);
line-height: 1.6;
margin: 0 0 20px;
}
.modal-body .readmore {
display: inline-block;
font-family: 'Share Tech Mono', monospace;
font-size: 12px;
letter-spacing: 0.1em;
color: var(--uef);
text-decoration: none;
border: 1px solid var(--uef);
padding: 8px 16px;
background: rgba(0,0,0,0.2);
transition: all 0.2s;
}
.modal-body .readmore:hover {
background: var(--uef);
color: var(--void);
}