-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 1.84 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
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="theme-color" content="#000">
<title>Github lite</title>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" href="./style.css">
<style>
.spinner-wrapper {
background-color: rgba(0, 0, 0, .1);
}
.spinner {
position: absolute;
width: 40px;
height: 40px;
top: 50%;
left: 50%;
margin-top: -20px;
margin-left: -20px;
}
.spinner::before,
.spinner::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #000;
opacity: .6;
animation: doubleBounce 2s infinite ease-in-out;
}
.spinner::after {
animation-delay: -1s;
}
.no-script {
display: flex;
position: fixed;
top: 0;
bottom: 0;
right: 0;
left: 0;
align-items: center;
justify-content: center;
text-align: center;
padding: 10px;
background-color: #fff;
}
@keyframes doubleBounce {
0%,
100% {
transform: scale(0);
}
50% {
transform: scale(1);
}
}
</style>
</head>
<body>
<div id="app">
<div class="spinner-wrapper">
<div class="spinner" aria-busy="true" aria-live="polite" aria-label="Don't refresh the page">
</div>
</div>
</div>
<noscript>
<div class="no-script">
For correct work of application, enable JavaScript and reload the page.
</div>
</noscript>
<script src="bundle.js"></script>
</body>
</html>