2018-03-15 01:48:52 +01:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
2018-08-01 05:37:05 +02:00
|
|
|
|
2018-03-15 01:48:52 +01:00
|
|
|
<head>
|
2018-10-02 04:01:47 +02:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>Sengi</title>
|
|
|
|
<base href="./">
|
2018-03-15 01:48:52 +01:00
|
|
|
|
2018-10-02 04:01:47 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
2018-09-23 19:40:29 +02:00
|
|
|
|
2018-10-02 04:01:47 +02:00
|
|
|
<style>
|
|
|
|
.lds-ripple {
|
|
|
|
/* display: inline-block; */
|
|
|
|
margin: 30px auto;
|
|
|
|
position: relative;
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-ripple div {
|
|
|
|
position: absolute;
|
|
|
|
border: 4px solid #444f74;
|
|
|
|
opacity: 1;
|
|
|
|
border-radius: 50%;
|
|
|
|
animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-ripple div:nth-child(2) {
|
|
|
|
animation-delay: -0.5s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes lds-ripple {
|
|
|
|
0% {
|
|
|
|
top: 28px;
|
|
|
|
left: 28px;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
top: -1px;
|
|
|
|
left: -1px;
|
|
|
|
width: 58px;
|
|
|
|
height: 58px;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2020-02-26 04:52:50 +01:00
|
|
|
<link rel="manifest" href="manifest.json">
|
2020-04-12 02:42:44 +02:00
|
|
|
<meta name="theme-color" content="#000000">
|
2018-03-15 01:48:52 +01:00
|
|
|
</head>
|
2018-08-01 05:37:05 +02:00
|
|
|
|
2019-03-11 00:23:33 +01:00
|
|
|
<body ondragstart="return false;" ondrop="return false;">
|
2018-10-02 04:01:47 +02:00
|
|
|
<app-root>
|
|
|
|
<div class="lds-ripple">
|
|
|
|
<div></div>
|
|
|
|
<div></div>
|
|
|
|
</div>
|
|
|
|
</app-root>
|
2020-02-26 04:52:50 +01:00
|
|
|
<noscript>Please enable JavaScript to continue using this application.</noscript>
|
2018-03-15 01:48:52 +01:00
|
|
|
</body>
|
2018-08-01 05:37:05 +02:00
|
|
|
</html>
|