-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDefault.html
146 lines (128 loc) · 4 KB
/
Default.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=0.6, user-scalable=yes">
<title>{all_time_high_price} - Bitcoin All Time High Price</title>
<style type="text/css">
body {
background-color: #FFFFFF;
}
.price {
margin: 0 auto;
color: #000080;
font-size: 56px;
text-align: center;
font-family: Arial;
width: 500px;
}
.head {
width: 500px;
margin: 0 auto;
color: #000000;
font-size: 35px;
text-align: center;
font-family: Arial;
}
.separator {
clear: both;
display: block;
height: 50px;
}
.update {
font-size: 15px;
text-align: center;
font-family: Arial;
margin: 0 auto;
}
table {
margin: 0 auto;
background-color: #FFFFFF;
width: 500px;
padding: 3px;
border-spacing: 3px;
border-color: #FFCC00;
border-width: 1px;
text-align: center;
table-layout: fixed;
font-family: Arial;
}
th {
border-bottom: 1px solid black;
}
.timestamp {
color: #C0C0C0;
font-size: 10px;
text-align: center;
font-family: Arial;
margin: 0 auto;
}
.symbol {
color: #A0A0A0;
font-size: 14px;
text-align: center;
font-family: Arial;
margin: 0 auto;
}
.placeholder {
width: 500px;
text-align: center;
margin: 0 auto;
}
.author {
color: black;
font-size: 10px;
text-align: right;
font-family: Arial;
float: right;
}
.donate {
color: #A0A0A0;
font-size: 10px;
text-align: left;
font-family: Arial;
float: left;
}
</style>
</head>
<body>
<a href="https://github.com/musalbas/btcalltimehigh" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="separator"></div>
<div class="separator"></div>
<div class="head">
Bitcoin All Time High Price
</div>
<div class="price">
{all_time_high_price}
</div>
<br />
<div class="symbol">
{all_time_high_symbol}
</div>
<div class="timestamp">
{all_time_high_time}
</div>
<div class="separator"></div>
<div class="update">
Automatically updated every 15 minutes.
</div>
<div class="separator"></div>
<table>
<tr id="heading">
<th>All Time High Price</th>
<th>Date</th>
<th>Market</th>
</tr>
{all_time_high_prices_table}
</table>
<div class="separator"></div>
<div class="placeholder">
<div class="author">
By <a href="https://twitter.com/Fares_Alaboud" target="_blank">@Fares_Alaboud</a> & <a href="https://twitter.com/musalbas" target="_blank">@musalbas</a>
</div>
<div class="donate">
Donate: 1DQRBzK8nPBiej5p1edCKSjAstjdnzq23c
</div>
</div>
<div class="separator"></div>
</body>
</html>