wireguard-dashboard-admin/index.html

103 lines
2.2 KiB
HTML
Raw Normal View History

2021-10-16 16:16:58 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-01-05 14:17:06 +08:00
<title>pure-admin-thin</title>
2021-10-16 16:16:58 +08:00
<script>
window.process = {};
</script>
</head>
<body>
<div id="app">
<style>
2022-01-07 15:08:21 +08:00
* {
margin: 0;
padding: 0;
}
html,
body {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
font-family: "Reggae One", cursive;
}
.loader,
.loader:before,
.loader:after {
border-radius: 50%;
width: 2.5em;
height: 2.5em;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
-webkit-animation: loadAnimation 1.8s infinite ease-in-out;
animation: loadAnimation 1.8s infinite ease-in-out;
2021-10-16 16:16:58 +08:00
}
2022-01-07 15:08:21 +08:00
.loader {
color: #406eeb;
font-size: 10px;
margin: 80px auto;
position: relative;
text-indent: -9999em;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
.loader:before,
.loader:after {
2021-10-16 16:16:58 +08:00
content: "";
position: absolute;
2022-01-07 15:08:21 +08:00
top: 0;
}
.loader:before {
left: -3.5em;
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
2021-10-16 16:16:58 +08:00
}
2022-01-07 15:08:21 +08:00
.loader:after {
left: 3.5em;
}
@-webkit-keyframes loadAnimation {
0%,
80%,
100% {
box-shadow: 0 2.5em 0 -1.3em;
2022-01-05 14:17:06 +08:00
}
2022-01-07 15:08:21 +08:00
40% {
box-shadow: 0 2.5em 0 0;
2022-01-05 14:17:06 +08:00
}
2022-01-07 15:08:21 +08:00
}
@keyframes loadAnimation {
0%,
80%,
2022-01-05 14:17:06 +08:00
100% {
2022-01-07 15:08:21 +08:00
box-shadow: 0 2.5em 0 -1.3em;
}
40% {
box-shadow: 0 2.5em 0 0;
2021-10-16 16:16:58 +08:00
}
}
</style>
2022-01-07 15:08:21 +08:00
<div class="loader">Loading...</div>
2021-10-16 16:16:58 +08:00
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>