2023-03-29 15:22:33 +00:00
|
|
|
<!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>
|
2023-05-08 09:08:04 +00:00
|
|
|
<link rel="stylesheet" href="/styles/default.min.css">
|
2023-11-15 18:00:53 +00:00
|
|
|
<link rel="stylesheet" href="/styles/default.min.css">
|
2023-05-08 09:08:04 +00:00
|
|
|
<link rel="stylesheet" href="/styles/androidstudio.min.css">
|
|
|
|
|
<script src="/js/highlight.min.js"></script>
|
|
|
|
|
<script src="/js/highlightjs-line-numbers.min.js"></script>
|
2023-11-15 18:00:53 +00:00
|
|
|
<style>
|
|
|
|
|
.loading-page {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.messages {
|
|
|
|
|
width: 80%;
|
|
|
|
|
height: 100px;
|
|
|
|
|
background-color: #e3e3e3;
|
|
|
|
|
margin: 100px auto;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lds-dual-ring {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
position: relative;
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
}
|
|
|
|
|
.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>
|
2023-03-29 15:22:33 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2023-11-15 18:00:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="app">
|
|
|
|
|
<div class="loading-page">
|
|
|
|
|
<img src="/src/assets/logo2x-1.png" style="margin-top: 50px;">
|
|
|
|
|
<div class="lds-dual-ring"></div>
|
|
|
|
|
<div class="loading-messages"><p>Loading...</p></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2023-03-29 15:22:33 +00:00
|
|
|
<script type="module" src="/src/main.ts"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|