-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (59 loc) · 2.38 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
<!doctype html>
<html class="no-js" lang="en-US">
<head>
<meta charset="utf-8">
<title>Scrim map generator</title>
<meta name="description" content="Generates map rotation for Destiny 2 scrims">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#fafafa">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-icons.min.css">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div id="main-container">
<h2 id="header-text">
The following maps are selected
<button class="btn btn-link btn-action float-right" id="again">
<span class="icon icon-refresh"></span>
</button>
</h2>
<div id="target"></div>
<details class="accordion" id="advanced">
<summary class="accordion-header c-hand">
<span class="icon icon-arrow-right mr-1"></span>
<strong>Advanced Settings</strong>
</summary>
<form class="accordion-body" action="#">
<div class="column col-3 col-xs-12">
<div class="form-group">
<label class="form-label" for="amount">How many maps</label>
<input class="form-input" id="amount" type="number" value="3" min="1" max="4" name="amount">
</div>
<div class="divider text-center" data-content="Do you prefer small, medium or large maps"></div>
<div class="form-group">
<label class="form-switch tooltip" data-tooltip="E.g. Exodus, Burnout">
<input type="checkbox" value="s" name="size" checked>
<span class="form-icon"></span> Small
</label>
</div>
<div class="form-group">
<label class="form-switch tooltip" data-tooltip="E.g. Pacifica, Rusted Lands">
<input type="checkbox" value="m" name="size" checked>
<span class="form-icon"></span> Medium
</label>
</div>
<div class="form-group">
<label class="form-switch tooltip" data-tooltip="E.g. Fortress, Fragment">
<input type="checkbox" value="l" name="size" checked>
<span class="form-icon"></span> Large
</label>
</div>
</div>
</form>
</details>
</div>
<noscript>This site requires JavaScript to be enabled in order to generate maps</noscript>
<script src="scripts/map-randomizer.js" defer></script>
</body>
</html>