-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
65 lines (60 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Gas</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<div class="container">
<div class="header">
<!--TODO: Add link to repo-->
<a href="https://github.com/amberdata/amberdata-example-gas-station">
Build Your Own — View Repo
<div class="pointer"> > </div>
</a>
</div>
<div id="gas-predictions" class="card">
<div class="card-title">Gas Predictions</div>
<div class="card-content">
<div id="fast" class="prediction">
<div class="price">
<p class="value"> </p>
<p class="unit">Gwei</p>
</div>
<p class="type">Fast</p>
</div>
<div id="medium" class="prediction">
<div class="price">
<p class="value"> </p>
<p class="unit">Gwei</p>
</div>
<p class="type">Medium</p>
</div>
<div id="slow" class="prediction">
<div class="price">
<p class="value"> </p>
<p class="unit">Gwei</p>
</div>
<p class="type">Slow</p>
</div>
</div>
<div class="spinner">
<div class="dot1"></div>
<div class="dot2"></div>
</div>
</div>
<div id="gas-percentiles" class="card">
<div class="card-title">Gas Percentiles</div>
<div class="card-content">
</div>
<div class="loader"></div>
</div>
</div>
<script src="assets/jquery.min.js"
type="text/javascript"></script>
<script src="assets/axios.min.js"></script>
<script src="index.js"></script>
</body>
</html>