forked from dappforce/dappforce-tendermint-explorer
-
Notifications
You must be signed in to change notification settings - Fork 18
/
index.html
66 lines (64 loc) · 1.62 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
<!DOCTYPE html>
<meta charset="utf-8">
<title>Heimdall Explorer</title>
<meta name=viewport content="width=device-width, user-scalable=no">
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<div id="app">
<div id="load">
<div id="load-container">
<div id="load-title">Heimdall Explorer</div>
<div id="load-main">
<p class="green">app is loading…</p>
<p>taking forever? disable noscript</p>
</div>
</div>
</div>
</div>
<script>
if (!Object.defineProperty) {
window.alert('Heimdall Explorer does not support Internet Explorer 8 and below. Please update your browser to a modern version of Chrome, Firefox, or Safari.')
}
</script>
<style>
body { margin: 0; }
#load {
display: flex;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
background: #000;
}
#load-container {
font: 16px/1.5 system, -apple-system, BlinkMacSystemFont, "Roboto", "Seogue UI", "Helvetica Neue", "Lucida Grande", sans-serif;
color: #fff;
margin: 0 auto;
text-align: center;
width: 18rem;
height: 18rem;
display: flex;
flex-flow: column nowrap;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
#load-title {
font-size: 1.5rem;
line-height: 3;
font-weight: 500;
width: 100%;
}
#load-main p {
font-size: 1rem;
font-weight: 300;
color: #ccc;
margin-bottom: 1em;
}
#load-main p.green {
color: hsl(210,50%,50%);
}
#load-main a {
text-decoration: none;
color: hsl(210,50%,50%);
}
</style>