-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (74 loc) · 2.08 KB
/
index.html
File metadata and controls
85 lines (74 loc) · 2.08 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!--
File: index.html
Project: Gull
File Created: Wednesday, 3rd November 2021 8:57:46 am
Author: Naime Hossain & ui-lib -> https://ui-lib.com/ (support@ui-lib.com)
-----
Last Modified: Sunday, 23rd October 2022 1:14:05 pm
Modified By: Naime Hossain & ui-lib -> https://ui-lib.com/ (support@ui-lib.com>)
-----
Copyright 2019 - 2022 ui-lib , ui-lib ( https://ui-lib.com/ )
-->
<!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" />
<style>
.loading_wrap {
width: 100%;
height: 100%;
overflow: hidden;
background: #fff;
display: block;
position: absolute;
}
.loader_logo {
height: 80px;
width: 80px;
position: absolute;
left: calc(50% - 50px);
top: 38%;
}
.loader_logo img {
height: 100%;
width: 100%;
}
.loading {
border: 3px solid rgba(59, 130, 246, 0.45);
position: absolute;
left: calc(50% - 35px);
top: 50%;
width: 55px;
height: 55px;
border-radius: 50%;
border-top-color: #3b82f6;
animation: loader 1s ease-in-out infinite;
-webkit-animation: loader 1s ease-in-out infinite;
}
@keyframes loader {
to {
-webkit-transform: rotate(360deg);
}
}
@-webkit-keyframes loader {
to {
-webkit-transform: rotate(360deg);
}
}
</style>
<title>MetaVC</title>
</head>
<body>
<!-- built files will be auto injected -->
<div class="loading_wrap" id="loading_wrap">
<div class="loader_logo">
<img src="/images/MetaVC-logo.png" class="" alt="logo" />
</div>
<div class="loading"></div>
</div>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>