forked from OpenCommunityCoin/meteor-dapp-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
50 lines (45 loc) · 1.34 KB
/
404.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
<html>
<head>
<title>404 page for github pages</title>
<META http-equiv="refresh" content="1;URL=https://wallet.ethereum.org">
<style type="text/css">
body {
background-color: #f0f0f0;
color: #ACACAC;
text-shadow: 0 -1px #fff;
font: 20px Helvetica Neue, Arial;
font-weight: 200;
text-align: center;
padding: 10px;
padding-top: 100px;
}
a {
margin: 16px 0;
margin-bottom: 48px;
font: 100 16px 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
text-decoration: none;
color: #02a8f3;
font-weight: 600;
font-size: 1em;
line-height: 1.4em;
}
#msg {
opacity: 0;
transition: opacity 1s ease-in-out;
}
</style>
</head>
<body onload="setTimeout(onTimerElapsed, 5000);">
<div id="msg">
<p>
<a href="https://wallet.ethereum.org"> Click here to redirect to the main wallet page</a>
</p>
</div>
</body>
<script type="text/javascript">
function onTimerElapsed() {
var myDiv = document.getElementById('msg');
myDiv.style.opacity = 1;
}
</script>
</html>