-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.html
executable file
·62 lines (57 loc) · 1.45 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>WebpackBin</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href='https://fonts.googleapis.com/css?family=Ubuntu:400,700' rel='stylesheet' type='text/css'>
<style>
html, body {
margin: 0;
background-color: #242d3c;
color: #fff;
font-family: Ubuntu, sans-serif;
overflow: hidden;
height: 100%;
}
#root {
height: 100%;
}
#loader {
position: absolute;
top: 50%;
left: 50%;
width: 500px;
height: 97px;
margin-top: -69px;
margin-left: -250px;
}
#loader h3 {
text-align: center;
opacity: 1;
animation: pulse 1s infinite;
-webkit-animation: pulse 1s infinite;
}
@keyframes pulse {
0% {opacity: 1;}
50% {opacity: 0.5;}
100% {opacity: 1;}
}
@-webkit-keyframes pulse {
0% {opacity: 1;}
50% {opacity: 0.5;}
100% {opacity: 1;}
}
</style>
</head>
<body>
<div id="root"></div>
<div id="loader">
<img src="logo.png"/>
<h3>Loading it up!</h3>
</div>
<script type="text/javascript" src="/client_bundle.js"></script>
</body>
</html>