forked from johreh/gloomycompanion
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
73 lines (67 loc) · 2.98 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
68
69
70
71
72
73
<!DOCTYPE html>
<!-- build:[manifest] manifest.appcache -->
<html manifest="">
<!-- /build -->
<head>
<title>Gloomy Companion</title>
<link rel="apple-touch-icon" sizes="192x192" href="images/icon.png" />
<link rel="icon" type="image/png" sizes="192x192" href="images/icon.png" />
<link rel="manifest" href="app.webmanifest" />
<meta charset="UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Gloomy Companion" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- build:css css/gloomy.min.css -->
<link rel="stylesheet" href="css/cards.css" />
<link rel="stylesheet" href="css/style.css" />
<!-- /build -->
</head>
<body>
<div id="progress"></div>
<div class="panecontainer">
<div id="settingspane" class="pane expanded">
<ul class="tabcontainer">
<li id="scenariotab" class="">Scenario</li>
<li id="deckstab" class="inactive">Decks</li>
</ul>
<div id="scenariospage" class="tabbody">
<ul class="selectionlist" id="levels">
</ul>
<ul class="selectionlist" id="campaigns">
</ul>
</div>
<div id="deckspage" class="inactive tabbody">
<ul class="selectionlist">
<li class="head">Add deck</li>
<li>
add <select id="additional_deck"></select> with level
<input type="number" id="additional_deck_level" min="0" max="7" value="1">
</li>
<li>
<input id="applydeck" type="button" value="Add deck">
</li>
<li>
<hr>
</li>
<ul class="selectionlist" id="active_decks">
<li class="head">Decks on tableau</li>
</ul>
</ul>
</div>
</div>
<div id="cancelarea">
</div>
</div>
<div class="pane" id="rewards">
</div>
<input alt="Configure" id="settingsbtn" type="image" src="images/settings.svg" />
<div id="scenarioname"></div>
<div id="tableau" style="font-size: 26.6px;"> <!-- base font size for all cards. Placed here to make it adjustable from javascript -->
</div>
</body>
<!-- build:js gloomy.min.js -->
<script type="module" src="app/main.js"></script>
<!-- /build -->
</html>