-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (44 loc) · 1.44 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
<!doctype html>
<html>
<head>
<title>
Hoplite Build Calculator
</title>
<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>
<script src="js/warnings.json" type="text/javascript"></script>
<script src="js/prayers.json" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
<link href="style/style.css" rel="stylesheet">
<!-- UI scaling -->
<link href="style/size1.css" rel="stylesheet" media="(min-width: 1240px)">
<link href="style/size2.css" rel="stylesheet" media="(min-width: 950px) and (max-width: 1240px)">
<link href="style/size3.css" rel="stylesheet" media="(min-width: 690px) and (max-width: 950px)">
<link href="style/size4.css" rel="stylesheet" media="(max-width: 690px)">
</head>
<body>
<div id="left">
<div id="pool"></div>
</div>
<div id="stats">
<div id="health_container">
<div id="refund_health" class="button">-</div>
<div id="health"></div>
<div id="acquire_health" class="button">+</div>
</div>
<div id="altars"></div>
<div id="warnings"></div>
<div id="footer">
<div id="options">
<input type="checkbox" onclick="setHideUnavailable(this);"> Hide unavailable prayers. <br>
<input type="checkbox" onclick="setHideDescriptions(this);"> Hide prayer descriptions. <br>
<br>
<br>
</div>
</div>
</div>
<div id="right">
<div id="acquired"></div>
</div>
</body>
</html>