1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/app/loading.html

41 lines
837 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
2018-05-04 13:57:19 +02:00
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
2018-05-24 18:08:02 +02:00
<title>MetaMask Loading</title>
2018-05-04 13:57:19 +02:00
<style>
#div-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
2019-05-04 18:57:19 +02:00
text-align: center;
2018-05-04 13:57:19 +02:00
}
#logo {
2019-05-04 18:57:19 +02:00
width: 256px;
2018-05-04 13:57:19 +02:00
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">
2019-05-04 18:57:19 +02:00
<img id="logo" src="./images/enslogo.svg">
<h1 class="center">MetaMask is querying ENS ...</h1>
2018-05-04 13:57:19 +02:00
</div>
</body>
</html>