-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLeader.html
More file actions
95 lines (95 loc) · 3.94 KB
/
Leader.html
File metadata and controls
95 lines (95 loc) · 3.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LEADERBOARD</title>
<link rel="icon" type="image/x-icon" href="images/favIcon.png">
<link rel="stylesheet" href="css/style.css">
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse; /* Collapse borders for better visibility */
padding: 5px; /* Padding for table cells */
}
.secondTable, .nonPointValues {
margin-top: 10px; /* Space above sub-tables */
border: 1px solid gray; /* Border for sub-tables */
display: none; /* Hide initially */
width: 100%; /* Full width for better alignment */
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">
<a href="./index.html">
<img src="./images/CORElogoStandard.png" alt="Logo" class="logo-img" id="logo-standard">
<img src="./images/CORELogoBlack.png" alt="Hover Logo" class="logo-img-hover" id="logo-hover">
</a>
</div>
<ul class="nav-links">
<div class="nav-left">
<li><a href="./index.html">Home</a></li>
<li><a href="./OurMatches.html">Our Matches</a></li>
<li class="dropdown">
<a class="dropbtn">Review</a>
<div class="dropdown-content">
<a href="./GenTeams.html">Review teams</a>
<a href="./GenMatches.html">Review matches</a>
<a href="./Leader.html">Review Leaderboard</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn">Tools</a>
<div class="dropdown-content">
<a href="./TeamVS.html">Team VS</a>
<a href="./Tools/GameGen.html">Double Elims predictor</a>
<a href="./Tools/PickList.html" >Pick List Helper</a>
</div>
</li>
</div>
<li class="dropdown">
<a class="dropbtn">Pratice Data Review</a>
<div class="dropdown-content">
<a href="./PraticeTemplates/GenTeams.html">Review Teams Pratice Data</a>
<a href="./PraticeTemplates/GenMatches.html" >Review Matches Pratice data</a>
<a href="./PraticeTemplates/Leader.html" >Review Pratice Leaderboard</a>
</div>
</li>
<div class="nav-right">
<li class="dropdown">
<a href="./ArchivedData/ArcData.html" class="dropbtn">Download Our Data</a>
<div class="dropdown-content">
<a href="./ArchivedData/ArcData.html">ReefScape.zip (Not Out yet)</a>
<a href="./ArchivedData/ArcData.html">DemoData.zip</a>
</div>
</li>
<li class="dropdown">
<a class="dropbtn">Extras</a>
<div class="dropdown-content">
<a href="./">Documentation</a>
</div>
</li>
<li class="dropdown">
<a href="./index.html" class="dropbtn">year: ReefScape</a>
<div class="dropdown-content">
<a href="./">ReefScape</a>
<a href="./" >Crescendo</a>
<a href="./">Charged UP</a>
</div>
</li>
</div>
</ul>
</nav>
<br>
<div class="backbox">
<h1 >Leaderboard</h1>
<p> </p>
<div id="tableContainer"></div>
<br>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="js\LeaderScript.js"></script>
</body>
</html>