forked from ZeroGwafa/ArchMatCounter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathartefacts.html
47 lines (44 loc) · 2.43 KB
/
artefacts.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
<html>
<head>
<link rel='stylesheet' href='https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css' integrity='sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T' crossorigin='anonymous'>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="https://runeapps.org/nis/nis.css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Artifact Calculator</title>
</head>
<body class="nis artefact">
<div class="container">
<div class="row">
<div class="col">Restore XP: <span id="xp"></span></div>
</div>
</div>
<div class="container main">
</div>
<div class="container artifactMenu">
<div class="row fixed-bottom">
<div class="col">
<div class="row">
<div class="col-2">Search:</div>
<div class="col-4"><input type="search" class="search" tabindex=-1></div>
<div class="col-2">Collection:</div>
<div class="col-4">
<select id="collection" tabindex=-1>
<option value=''>Show All</option>
</select>
</div>
</div>
<div class="row my-3">
<div class="col"><button class="btn btn-warning clearAll" tabindex=-1>Clear</button></div>
<div class="col"><button class="btn btn-success completeAll" tabindex=-1>Complete All</button></div>
<div class="col"><button class="btn btn-primary import" tabindex=-1>Import</button></div>
</div>
</div>
</div>
</div>
</body>
<script src="scripts/data.js"></script>
<script src="scripts/arteData.js"></script>
<script src="scripts/artefacts.js"></script>
</html>