-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
77 lines (73 loc) · 2.08 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
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>API Explorer</title>
<link rel="stylesheet" href="/styles/default.min.css" />
<link rel="stylesheet" href="/styles/default.min.css" />
<link rel="stylesheet" href="/styles/androidstudio.min.css" />
<script src="/js/highlight.min.js"></script>
<script src="/js/highlightjs-line-numbers.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
.loading-page {
display: flex;
align-items: center;
flex-direction: column;
}
.messages {
width: 80%;
height: 100px;
background-color: #e3e3e3;
margin: 100px auto;
padding: 5px;
}
.progress-info {
width: 50%;
height: 100px;
padding: 5px;
margin: 50px auto;
text-align: center;
font-family: 'Roboto';
}
.lds-dual-ring {
display: inline-block;
position: relative;
width: 80px;
height: 80px;
margin-top: 15px;
}
.lds-dual-ring:after {
content: ' ';
display: block;
width: 64px;
height: 64px;
margin: 8px;
border-radius: 50%;
border: 6px solid #50b164;
border-color: #50b164 transparent #50b164 transparent;
animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div id="app">
<div class="loading-page" id="loading-api-spinner">
<img src="/src/assets/logo2x-1.png" style="width: 304px; margin-top: 50px" />
<div class="lds-dual-ring"></div>
<div class="progress-info" id="loading-api-info"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>