bep40 commited on
Commit
486b115
·
verified ·
1 Parent(s): 3b7c9fa

Simplify CSS for iframe-based WC content"

Browse files
Files changed (1) hide show
  1. static/wc2026.css +11 -82
static/wc2026.css CHANGED
@@ -1,92 +1,21 @@
1
- /* World Cup 2026 - Self-rendered tables (not scraped HTML) */
2
-
3
  .wc-data-box {
4
- font-size: 12px;
5
- color: #e0e0e0;
6
- max-height: 460px;
7
- overflow-y: auto;
8
- padding: 6px;
9
- background: #0a1020;
10
  border-radius: 6px;
 
11
  }
12
-
13
- /* Tables */
14
- .wc-data-box table {
15
  width: 100%;
16
- border-collapse: collapse;
17
- font-size: 11px;
18
- margin: 8px 0;
19
- }
20
- .wc-data-box thead tr {
21
- background: #0e2240;
22
- }
23
- .wc-data-box th {
24
- color: #7dd3fc;
25
- padding: 8px 5px;
26
- font-size: 10px;
27
- text-align: center;
28
- font-weight: 700;
29
- border-bottom: 2px solid #1e3a5f;
30
- }
31
- .wc-data-box td {
32
- padding: 7px 5px;
33
- border-bottom: 1px solid #152535;
34
- text-align: center;
35
- color: #e0e0e0;
36
- }
37
- .wc-data-box tbody tr:nth-child(even) {
38
- background: #0d1a30;
39
- }
40
- .wc-data-box tbody tr:hover {
41
- background: #132d4a;
42
- }
43
-
44
- /* Flag images - uniform size */
45
- .wc-data-box img {
46
- width: 20px;
47
- height: 14px;
48
- vertical-align: middle;
49
- margin: 0 3px;
50
- border-radius: 2px;
51
- object-fit: cover;
52
- display: inline-block;
53
- }
54
-
55
- /* Headings */
56
- .wc-data-box h3 {
57
- color: #7dd3fc;
58
- font-size: 14px;
59
- margin: 0 0 8px;
60
- padding: 0;
61
- }
62
- .wc-data-box h4 {
63
- color: #fbbf24;
64
- font-size: 12px;
65
- margin: 12px 0 4px;
66
- padding: 6px 0 3px;
67
- border-bottom: 1px solid #1e3a5f;
68
  }
69
-
70
- /* Bold (points) */
71
  .wc-data-box strong {
72
- color: #fbbf24;
73
- font-weight: 800;
74
- }
75
-
76
- /* Links */
77
- .wc-data-box a {
78
  color: #7dd3fc;
79
- text-decoration: none;
80
  }
81
-
82
- /* Footer note */
83
- .wc-data-box p {
84
- margin: 6px 0;
85
  color: #6b7b8f;
86
- font-size: 10px;
87
  }
88
-
89
- /* Scrollbar */
90
- .wc-data-box::-webkit-scrollbar { width: 5px; }
91
- .wc-data-box::-webkit-scrollbar-track { background: #0a1020; }
92
- .wc-data-box::-webkit-scrollbar-thumb { background: #1e3a5f; border-radius: 3px; }
 
1
+ /* World Cup 2026 - Iframe widget container */
 
2
  .wc-data-box {
3
+ max-height: 480px;
4
+ overflow: hidden;
 
 
 
 
5
  border-radius: 6px;
6
+ background: #0a1020;
7
  }
8
+ .wc-data-box iframe {
9
+ display: block;
 
10
  width: 100%;
11
+ min-height: 400px;
12
+ border: none;
13
+ border-radius: 6px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
  }
 
 
15
  .wc-data-box strong {
 
 
 
 
 
 
16
  color: #7dd3fc;
17
+ font-size: 13px;
18
  }
19
+ .wc-data-box span {
 
 
 
20
  color: #6b7b8f;
 
21
  }