aboutsummaryrefslogtreecommitdiffstats
path: root/app/no_mainnet.html
blob: f90e6d397743c6ed057f332e50eb91e3cf908f30 (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
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>no_mainnet</title>
</head>
<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%;
        }
        @keyframes logoAmin{
          from {transform: scale(1);}
          50%{transform: scale(1.1);}
          to {transform: scale(1);}
        }
        .no_mainnet{
            width: 80%;
            height: auto;
            overflow: hidden;
            padding: 10px;
        }
        .no_mainnet > img{
            margin: 0 auto 31px auto;
            width: 136px;
            height: auto;
            animation: logoAmin 1s infinite linear;
        }
        .no_mainnet > h1{
            text-align: center;
            font-family: Gotham;
            font-size: 18px;
            font-weight: 500;
            font-style: normal;
            font-stretch: normal;
            line-height: normal;
            letter-spacing: 1.3px;
            color: #33559f;
        }
    
      </style>
<body>
    <div class="no_mainnet">
        <img src="./images/cancel.png" alt="">
        <h1>ENS resolver only support on Ethereum mainnet</h1>
    </div>
</body>
</html>