aboutsummaryrefslogtreecommitdiffstats
path: root/app/404.html
blob: 8a6df9d7a07a21929781f7704529739fd9a0f2cf (plain) (blame)
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
<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>