mirror of https://github.com/Kylart/KawAnime.git
39 lines
728 B
HTML
Executable File
39 lines
728 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>KawAnime</title>
|
|
<style>
|
|
html, body
|
|
{
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-image: url("static/images/index-bg.jpg");
|
|
background-size: cover;
|
|
background-position: bottom;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.text
|
|
{
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
position: absolute;
|
|
top: 20%;
|
|
left: 8%;
|
|
text-align: center;
|
|
padding: 5px 20px 5px 20px;
|
|
font-family: sans-serif;
|
|
color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="text">
|
|
<h2 class="thank">Thank you for contributing to KawAnime!</h2>
|
|
<h1 class="loading">Loading application...</h1>
|
|
</div>
|
|
</body>
|
|
</html>
|