-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
63 lines (53 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<title>Instatus Out</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self';" />
</head>
<body>
<div id="instatus-out"></div>
</body>
<script src="./build/js/app.js"></script>
<style>
html,
body {
height: 100%;
-webkit-user-select: none;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans',
'Helvetica Neue', sans-serif;
margin: 0;
cursor: default;
}
#instatus-out {
height: 100%;
}
.notification-exit {
transform: translate3d(0px, 0, 0);
opacity: 1;
transition-duration: 250ms;
transition-timing-function: cubic-bezier(0.175, 0.665, 0.32, 1), linear;
}
.notification-exit.notification-exit-active {
transform: translate3d(350px, 0, 0);
opacity: 0;
}
#nprogress {
pointer-events: none;
}
#nprogress .bar {
position: fixed;
top: 0;
left: 50px;
z-index: 1031;
background: #203354;
width: 100%;
height: 2px;
}
</style>
</html>