80 lines
1.9 KiB
HTML
80 lines
1.9 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>TeaClient</title>
|
||
|
|
||
|
<style type="text/css">
|
||
|
html, body {
|
||
|
background: #18BC9C;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
position: absolute;
|
||
|
display: block;
|
||
|
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
}
|
||
|
|
||
|
.smoke {
|
||
|
z-index: 2;
|
||
|
}
|
||
|
.logo {
|
||
|
z-index: 1;
|
||
|
}
|
||
|
|
||
|
.container-logo {
|
||
|
position: relative;
|
||
|
display: inline-block;
|
||
|
|
||
|
width: 200px;
|
||
|
height: 200px;
|
||
|
}
|
||
|
|
||
|
.container-info a {
|
||
|
display: inline-block;
|
||
|
color: #FFFFFF;
|
||
|
font-family: "Arial",serif;
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
|
||
|
.container-bar {
|
||
|
position: relative;
|
||
|
margin-top: 5px;
|
||
|
border: white solid 2px;
|
||
|
height: 18px;
|
||
|
}
|
||
|
|
||
|
.container-bar .bar {
|
||
|
z-index: 1;
|
||
|
position: absolute;
|
||
|
display: block;
|
||
|
|
||
|
background: whitesmoke;
|
||
|
border: none;
|
||
|
width: 0%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<script type="application/ecmascript">const exports = {};</script>
|
||
|
<script type="application/ecmascript" src="loader.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container-logo">
|
||
|
<img class="logo" src="img/logo.svg">
|
||
|
<img class="smoke" src="img/smoke.png">
|
||
|
</div>
|
||
|
<div class="container-info">
|
||
|
<a id="loading-text">Loading... Please wait!</a>
|
||
|
<div class="container-bar">
|
||
|
<div class="bar"></div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|