nifty-wallet/app/404.html

53 lines
971 B
HTML
Raw Normal View History

2018-05-04 04:57:19 -07:00
<html>
<head>
2018-07-17 10:18:12 -07:00
<title>Nifty Wallet</title>
2018-05-04 04:57:19 -07:00
<style>
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
img{
display: block;
}
html, body{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
2018-05-29 04:29:12 -07:00
.app{
position: relative;
width: 100%;
height: auto;
overflow: hidden;
}
2018-05-04 04:57:19 -07:00
img{
display: block;
2018-05-29 04:29:12 -07:00
width: 100%;
height: auto;
}
h2{
display: block;
width: 100%;
overflow: hidden;
position: absolute;
bottom: 20%;
left: 0;
color: #1b243d;
text-align: center;
}
h2 > a{
color: #1b243d;
2018-05-04 04:57:19 -07:00
}
</style>
</head>
<body>
2018-05-29 04:29:12 -07:00
<div class="app">
<img src="./images/404.png" alt="">
2018-06-01 09:00:11 -07:00
<h2>Powered by <a href="https://www.portal.network/">Portal Network</a></h2>
2018-05-29 04:29:12 -07:00
</div>
2018-05-04 04:57:19 -07:00
</body>
2018-06-01 09:00:11 -07:00
</html>