-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (61 loc) · 1.49 KB
/
index.html
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
<html>
<head>
<script src="dist/bundle.js">
</script>
<style>
body {
background-color: lightgrey;
}
.logo-img {
height: 250px;
padding: 50px;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.header {
float: left;
width: 100%;
}
#loader {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: lightgrey;
z-index: 10;
overflow-x: hidden;
overflow-y: hidden;
}
.left {
width: 30%;
float: left;
}
.right {
width: 70%;
float: right;
}
</style>
<link rel="apple-touch-icon" sizes="180x180" href="/imgs/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/imgs/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/imgs/favicon/favicon-16x16.png">
<link rel="manifest" href="/imgs/favicon/manifest.json">
<link rel="mask-icon" href="/imgs/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/imgs/favicon/favicon.ico">
<meta name="msapplication-config" content="/imgs/favicon/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="loader"></div>
<div>
<div class="header left">
<img class="logo-img" src="imgs/ILoveHue-Web-Logo.png"/>
</div>
<div class="right">
<div id="app"></div>
</div>
</div>
<!-- </div> -->
</body>
</html>