2021-01-23 16:38:13 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html scroll-behavior="smooth">
|
|
|
|
<head>
|
|
|
|
<!-- nunito font, copying wynndata -->
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="styles.css">
|
|
|
|
<link rel="icon" href="favicon.png">
|
|
|
|
<link rel="manifest" href="manifest.json">
|
2021-01-25 22:18:13 +00:00
|
|
|
<title>WynnAtlas</title>
|
2021-01-23 16:38:13 +00:00
|
|
|
</head>
|
2021-01-25 22:06:41 +00:00
|
|
|
<body class="all" style="overflow-y: scroll">
|
2021-01-23 16:38:13 +00:00
|
|
|
<div class="header" id="header">
|
2021-01-25 22:18:13 +00:00
|
|
|
WynnAtlas
|
2021-01-23 16:38:13 +00:00
|
|
|
</div>
|
|
|
|
<div class="center" id="header2">
|
|
|
|
Made by: hppeng and ferricles
|
|
|
|
</div>
|
|
|
|
<div class="center" id="credits">
|
|
|
|
<a href="credits.txt">Additional credits</a>
|
|
|
|
</div>
|
2021-01-25 22:06:41 +00:00
|
|
|
<div class="center" id="main" style="padding: 2%">
|
|
|
|
<div id="search-container" style="margin-bottom: 1.5%">
|
2021-01-27 04:18:16 +00:00
|
|
|
<div class="left" id="search-filter" style="display: inline-block; vertical-align: top">
|
|
|
|
<label for="search-filter-field">Filter By:</label>
|
2021-01-25 22:06:41 +00:00
|
|
|
<br>
|
2021-01-27 04:18:16 +00:00
|
|
|
<input id="search-filter-field" type="text" placeholder="str >= 15 && dex >= 10" style="width: 25vw; padding: 8px">
|
2021-01-25 22:06:41 +00:00
|
|
|
<br>
|
2021-01-27 04:18:16 +00:00
|
|
|
<div id="search-filter-error" style="color: #ff0000"></div>
|
|
|
|
</div>
|
|
|
|
<div class="left" id="search-sort" style="display: inline-block; vertical-align: top">
|
|
|
|
<label for="search-sort-field">Sort By:</label>
|
|
|
|
<br>
|
|
|
|
<input id="search-sort-field" type="text" placeholder="str + dex, mdraw + sdraw" style="width: 25vw; padding: 8px">
|
|
|
|
<br>
|
|
|
|
<div id="search-sort-error" style="color: #ff0000"></div>
|
2021-01-25 22:06:41 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="item-list-container">
|
|
|
|
<div class="left" id="item-list" style="display: inline-block"></div>
|
|
|
|
<div class="center" id="item-list-footer"></div>
|
2021-01-23 16:38:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-01-25 22:06:41 +00:00
|
|
|
<script type="text/javascript" src="utils.js"></script>
|
|
|
|
<script type="text/javascript" src="build_utils.js"></script>
|
|
|
|
<script type="text/javascript" src="damage_calc.js"></script>
|
|
|
|
<script type="text/javascript" src="display.js"></script>
|
|
|
|
<script type="text/javascript" src="query.js"></script>
|
|
|
|
<script type="text/javascript" src="load.js"></script>
|
|
|
|
<script type="text/javascript" src="items.js"></script>
|
2021-01-23 16:38:13 +00:00
|
|
|
</body>
|
|
|
|
</html>
|