-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (73 loc) · 2.88 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
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CF</title>
<link rel="stylesheet" type="text/css" href="layout.css"/>
<link rel="shortcut icon" href="favicon.ico">
</head>
<body>
<div id="rFloater">
<div id="filters">
<input type="text" id="filterGoods" placeholder="Merchandise" />
<input type="text" id="filterInfo" placeholder="Details" />
<input type="text" id="filterTrader" placeholder="Trader (e.g. d12, B013, A001-F099)" />
<input type="text" id="filterBonuses" placeholder="Bonuses (e.g. str +2 10, lore 30)" />
<input type="text" id="filterQmin" placeholder="Q min" />
<input type="text" id="filterQmax" placeholder="Q max" />
<input type="text" id="filterLmin" placeholder="Left min" />
<input type="text" id="filterLmax" placeholder="Left max" />
<div class="spacer"></div>
<input type="text" id="filterPrice" placeholder="Price" />
<input type="text" id="filterPQmin" placeholder="Price Q min" />
<input type="text" id="filterPQmax" placeholder="Price Q max" />
<input type="text" id="filterPAMTmin" placeholder="Price min" />
<input type="text" id="filterPAMTmax" placeholder="Price max" />
<div class="spacer"></div>
<div class="button_halfwide" id="btnSearch">Search</div>
<div class="button_halfwide" id="btnReset">Clear all</div>
</div>
<div id="mapContainer">
<svg id="mapSVG"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
</svg>
</div>
<div id="lot">
<div id="lot-product-image" class="image-container"> </div>
<h1 id="lot-product"> </h1>
<h3 id="lot-left"> </h3>
<div id="lot-details"> </div>
<div id="lot-price-image" class="image-container"> </div>
<h1 id="lot-price"> </h1>
<div id="lot-pricedetails"> </div>
<h3 id="lot-timestamp"> </h3>
</div>
</div>
<div id="data-headers">
<div class="hdr">Stand</div>
<div class="hdr">Merch icon</div>
<div class="hdr">Product</div>
<div class="hdr">Q</div>
<div class="hdr">Stock</div>
<div class="hdr">Price icon</div>
<div class="hdr">Price</div>
<div class="hdr">Q</div>
<div class="hdr">AMT.</div>
</div>
<div id="data-container">
<table id="data" class="sortable">
<tbody>
</tbody>
</table>
</div>
<script type="text/javascript" src="options.js"></script>
<!-- <script type="text/javascript" src="data.js"></script> -->
<!-- <script type="text/javascript" src="SBS.js"></script> -->
<script type="text/javascript" src="https://drive.google.com/uc?export=download&id=1iCklcpQJMGBIkkGX8iCVjGzvu8ft_q2U"></script>
<script type="text/javascript" src="https://drive.google.com/uc?export=download&id=1NyL9f_SdDMQzrcJhe_N_XYJieXw5eFdC"></script>
<script type="text/javascript" src="map.js"></script>
<script type="text/javascript" src="rendertable.js"></script>
<script type="text/javascript" src="sorttable.js"></script>
</body>
</html>