aboutsummaryrefslogtreecommitdiffstats
path: root/app/loading.html
blob: aef5d96076fe38643d9c38982b2204c1095db512 (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
<html>
<head>
  <title>MetaMask Loading</title>
  <style>
    #div-logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 256px;
    }
    #logo {
      width: 100%;
      animation: pulse 1s ease-in-out infinite;
    }
    @keyframes pulse {
      0% {
        opacity: 1;
      }
      50% {
        opacity: 0.5;
        transform: scale(0.95, 0.95);
      }
      100% {
        opacity: 1;
      }
    }
  </style>
</head>
<body>
  <div id="div-logo">
    <img id="logo" src="./images/loginglogo.svg">
  </div>
</body>
</html>