mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
36 lines
594 B
HTML
36 lines
594 B
HTML
<html>
|
|
<head>
|
|
<title>Portal Network</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>
|