-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (50 loc) · 1.62 KB
/
index.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
61
62
63
64
65
66
67
<!--
This game is build by Moritz Reich (@n3rdc4ptn).
moritzreich.dev
-->
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Abkürzungsbingo</title>
<!-- %TRACKING_CODE% -->
</head>
<body>
<div class="container mx-auto p-7 h-[100vh] flex flex-col items-center gap-5">
<h1 class="text-2xl text-center">Abkürzungsbingo</h1>
<div class="flex-1 flex flex-col justify-center items-center gap-2">
<span id="current-abbr" class="text-8xl"></span>
<div class="toggle-btn text-4xl">
<span id="current-longform">Test</span>
</div>
<div class="toggle-btn text-4xl">
<span id="current-description">Test</span>
</div>
</div>
<div>
<button id="btn-prev-abbr" class="hidden btn text-blue-600 btn-link text-sm">
Zurück
</button>
<button id="btn-next-abbr" class="hidden btn text-xl">
Weiter
</button>
</div>
<div class="w-full">
<h2 class="text-lg mb-2">Letzte Abkürzungen:</h2>
<div id="latest-abbr" class="flex flex-row gap-2"></div>
</div>
<div class="w-full flex justify-end">
<div class="mr-3">
<label class="btn" for="csv-input">CSV laden</label>
<input class="hidden" type="file" id="csv-input" accept="text/csv" />
</div>
<button id="btn-restart" class="btn text-xl">
<i class="las la-redo-alt"></i>
</button>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>