-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 2.39 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Drafty - MTG Draft Companion</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js" type="module"></script>
<script src="lib/track-animate.js" defer></script>
<!-- Installable Webapp! -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-fullscreen">
<link rel="manifest" href="site.webmanifest" />
<!-- FavIcon -->
<link rel="icon" type="image/png" href="assets/icon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="assets/icon/favicon.svg" />
<link rel="shortcut icon" href="assets/icon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="assets/icon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Drafty" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<main>
<div class="container">
<div id="controls-wrapper" class="controls">
<div id="controls" class="controls__panel">
<div id="setup-buttons" class="controls__setup">
<button id="remove-player" class="controls__button controls__side controls__side--left" aria-label="Remove player"><span class="controls__side-label">−</span></button>
<button id="add-player" class="controls__button controls__side controls__side--right" aria-label="Add player"><span class="controls__side-label">+</span></button>
</div>
<button id="center-control" class="controls__button controls__center" type="button" aria-live="polite" aria-label="Confirm players">
<span id="center-control-content" class="controls__center-content">
<span id="center-control-primary" class="controls__center-primary">8</span>
<span id="center-control-secondary" class="controls__center-secondary">Confirm</span>
</span>
</button>
</div>
</div>
</div>
</main>
</body>
</html>