Spaces:
Running
Running
Upload 15 files
Browse files- img/.DS_Store +0 -0
- img/droparrow.svg +8 -0
- img/ico_github.png +0 -0
- img/logo_tctf.png +0 -0
- index.html +0 -0
- scripts.js +49 -0
- styles.css +103 -8
img/.DS_Store
ADDED
Binary file (6.15 kB). View file
|
|
img/droparrow.svg
ADDED
img/ico_github.png
ADDED
img/logo_tctf.png
ADDED
index.html
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
scripts.js
CHANGED
@@ -24,3 +24,52 @@ tabs.forEach((tab, index) => {
|
|
24 |
|
25 |
// Show initial tab
|
26 |
showTab(0);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
// Show initial tab
|
26 |
showTab(0);
|
27 |
+
|
28 |
+
//Dropdown lists
|
29 |
+
document.getElementById('dropdown-models').addEventListener('change', function() {
|
30 |
+
var selectedOption = this.value;
|
31 |
+
var allContents = document.querySelectorAll('.content-models');
|
32 |
+
for (var i = 0; i < allContents.length; i++) {
|
33 |
+
if (allContents[i].id === selectedOption) {
|
34 |
+
allContents[i].classList.remove('hidden');
|
35 |
+
} else {
|
36 |
+
allContents[i].classList.add('hidden');
|
37 |
+
}
|
38 |
+
}
|
39 |
+
});
|
40 |
+
|
41 |
+
document.getElementById('dropdown-datasets').addEventListener('change', function() {
|
42 |
+
var selectedOption = this.value;
|
43 |
+
var allContents = document.querySelectorAll('.content-datasets');
|
44 |
+
for (var i = 0; i < allContents.length; i++) {
|
45 |
+
if (allContents[i].id === selectedOption) {
|
46 |
+
allContents[i].classList.remove('hidden');
|
47 |
+
} else {
|
48 |
+
allContents[i].classList.add('hidden');
|
49 |
+
}
|
50 |
+
}
|
51 |
+
});
|
52 |
+
|
53 |
+
document.getElementById('dropdown-spaces').addEventListener('change', function() {
|
54 |
+
var selectedOption = this.value;
|
55 |
+
var allContents = document.querySelectorAll('.content-spaces');
|
56 |
+
for (var i = 0; i < allContents.length; i++) {
|
57 |
+
if (allContents[i].id === selectedOption) {
|
58 |
+
allContents[i].classList.remove('hidden');
|
59 |
+
} else {
|
60 |
+
allContents[i].classList.add('hidden');
|
61 |
+
}
|
62 |
+
}
|
63 |
+
});
|
64 |
+
|
65 |
+
document.getElementById('dropdown-followers').addEventListener('change', function() {
|
66 |
+
var selectedOption = this.value;
|
67 |
+
var allContents = document.querySelectorAll('.content-followers');
|
68 |
+
for (var i = 0; i < allContents.length; i++) {
|
69 |
+
if (allContents[i].id === selectedOption) {
|
70 |
+
allContents[i].classList.remove('hidden');
|
71 |
+
} else {
|
72 |
+
allContents[i].classList.add('hidden');
|
73 |
+
}
|
74 |
+
}
|
75 |
+
});
|
styles.css
CHANGED
@@ -39,8 +39,8 @@ h3 {
|
|
39 |
font-size: 14px;
|
40 |
color: #586073;
|
41 |
font-weight: 200;
|
42 |
-
margin-bottom:
|
43 |
-
margin-top:
|
44 |
text-align: left;
|
45 |
}
|
46 |
|
@@ -51,6 +51,27 @@ h4 {
|
|
51 |
text-align: left;
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
a:link {
|
55 |
font-size: 16px;
|
56 |
color: #FFFFFF;
|
@@ -70,7 +91,7 @@ a:active {
|
|
70 |
}
|
71 |
|
72 |
.link {
|
73 |
-
font-weight:
|
74 |
}
|
75 |
|
76 |
.small-link {
|
@@ -100,6 +121,7 @@ a:active {
|
|
100 |
display: inline-block;
|
101 |
font-size: 16px;
|
102 |
transition-duration: 0.4s;
|
|
|
103 |
}
|
104 |
|
105 |
.button:hover {
|
@@ -117,17 +139,44 @@ table {
|
|
117 |
td, th {
|
118 |
border: 0px;
|
119 |
height: 40px;
|
120 |
-
padding-left:
|
121 |
-
padding-right:
|
122 |
text-align: left;
|
123 |
font-weight: 200;
|
124 |
}
|
125 |
|
126 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
background-color: #111827;
|
128 |
}
|
129 |
|
130 |
-
table.alternate tr:nth-child(
|
131 |
background-color: #131b2b;
|
132 |
}
|
133 |
|
@@ -274,6 +323,7 @@ section::after {
|
|
274 |
/* Style for active tab */
|
275 |
.tabs label.active {
|
276 |
background-color: #080b12; /* Active tab background color */
|
|
|
277 |
border-radius: 5px;
|
278 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
|
279 |
}
|
@@ -314,4 +364,49 @@ section::after {
|
|
314 |
|
315 |
.tab-content.active {
|
316 |
display: block;
|
317 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
font-size: 14px;
|
40 |
color: #586073;
|
41 |
font-weight: 200;
|
42 |
+
margin-bottom: 30px;
|
43 |
+
margin-top: 8px;
|
44 |
text-align: left;
|
45 |
}
|
46 |
|
|
|
51 |
text-align: left;
|
52 |
}
|
53 |
|
54 |
+
h5 {
|
55 |
+
font-size: 16px;
|
56 |
+
color: #FFFFFF;
|
57 |
+
font-weight: bold;
|
58 |
+
text-align: left;
|
59 |
+
margin-bottom: 5px;
|
60 |
+
margin-top: 15px;
|
61 |
+
}
|
62 |
+
|
63 |
+
.up {
|
64 |
+
font-size: smaller; /* Reduce font size for superscript */
|
65 |
+
color: #155415;
|
66 |
+
margin-right: 0px;
|
67 |
+
}
|
68 |
+
|
69 |
+
.down {
|
70 |
+
font-size: smaller; /* Reduce font size for superscript */
|
71 |
+
color: #444;
|
72 |
+
margin-right: 0px;
|
73 |
+
}
|
74 |
+
|
75 |
a:link {
|
76 |
font-size: 16px;
|
77 |
color: #FFFFFF;
|
|
|
91 |
}
|
92 |
|
93 |
.link {
|
94 |
+
font-weight: 200;
|
95 |
}
|
96 |
|
97 |
.small-link {
|
|
|
121 |
display: inline-block;
|
122 |
font-size: 16px;
|
123 |
transition-duration: 0.4s;
|
124 |
+
margin-right: 0px;
|
125 |
}
|
126 |
|
127 |
.button:hover {
|
|
|
139 |
td, th {
|
140 |
border: 0px;
|
141 |
height: 40px;
|
142 |
+
padding-left: 20px;
|
143 |
+
padding-right: 20px;
|
144 |
text-align: left;
|
145 |
font-weight: 200;
|
146 |
}
|
147 |
|
148 |
+
.xcol {
|
149 |
+
border: 0px;
|
150 |
+
height: 40px;
|
151 |
+
padding-left: 20px;
|
152 |
+
padding-right: 0px;
|
153 |
+
text-align: left;
|
154 |
+
font-weight: 200;
|
155 |
+
}
|
156 |
+
|
157 |
+
.gcol {
|
158 |
+
border: 0px;
|
159 |
+
height: 40px;
|
160 |
+
padding-left: 10px;
|
161 |
+
padding-right: 0px;
|
162 |
+
text-align: left;
|
163 |
+
font-weight: 200;
|
164 |
+
}
|
165 |
+
|
166 |
+
.hfcol {
|
167 |
+
border: 0px;
|
168 |
+
height: 40px;
|
169 |
+
padding-left: 10px;
|
170 |
+
padding-right: 20px;
|
171 |
+
text-align: left;
|
172 |
+
font-weight: 200;
|
173 |
+
}
|
174 |
+
|
175 |
+
table.alternate tr:nth-child(even) {
|
176 |
background-color: #111827;
|
177 |
}
|
178 |
|
179 |
+
table.alternate tr:nth-child(odd) {
|
180 |
background-color: #131b2b;
|
181 |
}
|
182 |
|
|
|
323 |
/* Style for active tab */
|
324 |
.tabs label.active {
|
325 |
background-color: #080b12; /* Active tab background color */
|
326 |
+
color: #FFD21E;
|
327 |
border-radius: 5px;
|
328 |
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
|
329 |
}
|
|
|
364 |
|
365 |
.tab-content.active {
|
366 |
display: block;
|
367 |
+
}
|
368 |
+
|
369 |
+
|
370 |
+
|
371 |
+
/* Custom dropdown styles */
|
372 |
+
.custom-dropdown {
|
373 |
+
/* Add your custom styles here */
|
374 |
+
padding: 4px 0px 4px 0px;
|
375 |
+
border: 4px solid #080b12;
|
376 |
+
border-radius: 5px;
|
377 |
+
background-color: #080b12;
|
378 |
+
cursor: pointer;
|
379 |
+
width: 150px;
|
380 |
+
color: #FFFFFF; /* Text color for the dropdown */
|
381 |
+
font-size: 16px;
|
382 |
+
font-weight: bold;
|
383 |
+
margin-bottom: 0px;
|
384 |
+
margin-top: 0px;
|
385 |
+
text-align: left;
|
386 |
+
}
|
387 |
+
|
388 |
+
.hidden {
|
389 |
+
display: none;
|
390 |
+
}
|
391 |
+
|
392 |
+
/* Style for the circle container */
|
393 |
+
.circle {
|
394 |
+
width: 16px; /* Set the width of the circle */
|
395 |
+
height: 16px; /* Set the height of the circle */
|
396 |
+
border-radius: 50%; /* Make it a circle */
|
397 |
+
overflow: hidden; /* Hide overflowing parts */
|
398 |
+
display: inline-block; /* Display as inline-block */
|
399 |
+
margin-right: 7px; /* Optional: Add spacing between image and text */
|
400 |
+
}
|
401 |
+
|
402 |
+
/* Style for the image inside the circle */
|
403 |
+
.circle img {
|
404 |
+
width: 100%; /* Make the image fill the circle */
|
405 |
+
height: auto; /* Maintain aspect ratio */
|
406 |
+
}
|
407 |
+
|
408 |
+
/* Style for the text */
|
409 |
+
.text {
|
410 |
+
vertical-align: middle; /* Align text vertically */
|
411 |
+
}
|
412 |
+
|