-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
122 lines (107 loc) · 3.73 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html>
<head>
<title>CryptoTracker</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="materialize/css/materialize.min.css">
<style type="text/css">
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
* {
font-family: 'Source Code Pro', monospace !important;
}
body {
text-align: center;
background: rgb(255,255,255);
/*background: -webkit-linear-gradient(to right, #222, #000000);*/
/*background: linear-gradient(to right, #222, #000000);*/
}
.a {
margin-bottom: 15px;
border: solid;
border-style: solid;
border-color: rgb(0,0,0);
}
.card {
text-align: center;
}
th {
height: 50px;
background-color: rgba(135,206,235,0.6);
}
th,
td {
color: rgba(0,0,0,1);
border: 1px solid rgb(0,0,0);
border-style: solid;
}
.normalInput {
background-color: rgba(255, 255, 255, 0.9) !important;
width: 100% !important;
border: 1px solid rgb(0,0,0) !important;
border-radius: 2px !important;
height: 3rem !important;
}
tr,
th {
font-size: 12px;
}
</style>
</head>
<body>
<nav>
<div class="nav-wrapper" style="background-color: rgba(135,206,235,0.9);">
<ul class="right hide-on-med-and-down">
<li><a href="https://github.com/apuayush">My github</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<img class="responsive-img col s4 push-s4" src="icon.png" />
</div>
<div class="row">
<div class="col m4 push-m2">
<div class="row">
<div class="col m6">
<label>Start</label>
<input class="normalInput" id='start' value='0' type="number">
</div>
<div class="col m6">
<label>Limit</label>
<input class="normalInput" id='limit' value='10' type="number">
</div>
</div>
</div>
<div class="col m4 push-m2">
<label>Find</label><br>
<button id='send' class="waves-effect waves-light btn" style="width:100%;height: 3rem;background-color: rgba(135,206,235,0.7);">Find</button>
</div>
</div>
<div class="row">
<table>
<tbody id='head'>
<tr>
<th>Coin name</th>
<th>Rank</th>
<th>Symbol</th>
<th>Price</th>
<th>Price in BTC</th>
<th>Total supply</th>
<th>Avarilable supply</th>
<th>Max supply</th>
<th>MktCap</th>
<th>Change 1 Hour</th>
<th>Change 24 Hours</th>
<th>Change 7 Days</th>
</tr>
</tbody>
<tbody id='c'>
</tbody>
</table>
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="materialize/js/materialize.min.js"></script>
<script src='index.js'></script>
</body>
</html>