mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
53 lines
967 B
HTML
53 lines
967 B
HTML
<html>
|
|
<head>
|
|
<title>MetaMask</title>
|
|
<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%;
|
|
}
|
|
.app{
|
|
position: relative;
|
|
width: 100%;
|
|
height: auto;
|
|
overflow: hidden;
|
|
}
|
|
img{
|
|
display: block;
|
|
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;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
<img src="./images/404.png" alt="">
|
|
<h2>Powered by <a href="https://www.portal.network/">Portal Network</a></h2>
|
|
</div>
|
|
</body>
|
|
</html>
|