forked from cabal-club/cabal-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 1.4 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
@font-face {
font-family: 'NotoSansJP-Regular';
src: url('static/fonts/Noto_Sans_JP/NotoSansJP-Regular.otf');
}
:root {
font-family: NotoSansJP-Regular, sans-serif;
}
.loading {
align-items: center;
background-color: #1e1e1e;
display: flex;
flex-direction: column;
height: 100%;
justify-content: space-around;
width: 100%;
}
.loading img {
animation-duration: 3s;
animation-name: loading;
display: block;
height: 8em;
transition-timing-function: ease-in-out;
}
.loading .status {
animation: fadein 1s;
color: #777;
font-family: Arial, Helvetica, sans-serif;
}
@keyframes loading {
from { opacity: 0; transform: scale(0.6); }
to { opacity: 1; transform: scale(1); }
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
</style>
<head>
<body>
<div id="root">
<div class='loading'>
<div class='status'></div>
<img src='static/images/cabal-logo-black.svg' />
<div class='status'>Initializing...</div>
</div>
</div>
<script type="text/javascript" src="static/build.js"></script>
</body>
</html>