-
Notifications
You must be signed in to change notification settings - Fork 0
/
leader.html
60 lines (56 loc) · 1.97 KB
/
leader.html
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Lato|Ubuntu|Roboto+Mono" rel="stylesheet">
<style>
table {
border-collapse:collapse;
padding:50%;
width: 100%;
text-align: center;
}
th, td {
text-align: center;
padding: 8px;
border-bottom: 1px solid #ddd;
}
tr:nth-child(even){background-color: #f2f2f2}
th {
background-color: black;
color: white;
}
</style>
</head>
<body>
<h2 style="text-align: center;font-size: 30px;font-weight: 100;font-family: 'Ubuntu',sans-serif;">Leaderboard</h2>
<div style="padding: 40px 10vw">
<table>
<tr>
<th style="font-family: 'Lato', sans-serif;font-size: 25px;">Position</th>
<th style="font-family: 'Lato', sans-serif;font-size: 25px;">Team Name</th>
<th style="font-family: 'Lato', sans-serif;font-size: 25px;">Scores</th>
</tr>
<tr style="background-color: #ffdb4d;">
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">1</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">Griffin</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">100</td>
</tr>
<tr style="background-color: silver;">
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">2</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">Griffin</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">50</td>
</tr>
<tr style="background-color: #cd7f32;">
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">3</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">Swanson</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">30</td>
</tr>
<tr>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">4</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">Brown</td>
<td style="font-family: 'Roboto Mono', sans-serif;font-size: 20px;">25</td>
</tr>
</table>
</div>
</body>
</html>