-
Notifications
You must be signed in to change notification settings - Fork 0
/
grid.html
41 lines (35 loc) · 961 Bytes
/
grid.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
<!DOCTYPE html>
<!--
Copyright © 2020 Lukas Buchs, netas.ch
-->
<html>
<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>TODO write content</div>
<style>
.gender_all tr.gender_w {
color: #990099;
}
#ranking tr td:last-child {
font-weight: bold;
}
#ranking td.userLink {
cursor: pointer;
}
#ranking td.userLink:hover {
text-decoration: underline;
}
</style>
<script src="https://qr-time.lubu.ch/js/ranking.js"></script>
<script>
document.addEventListener("DOMContentLoaded", () => {
new Ranking(1);
});
</script>
<div id="ranking"></div>
</body>
</html>