2016-11-21 14:33:22 +00:00
|
|
|
<!DOCTYPE html>
|
2017-04-15 14:16:14 +00:00
|
|
|
<html>
|
2017-04-16 19:55:47 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2017-04-16 20:02:41 +00:00
|
|
|
<title>KawAnime</title>
|
2017-04-16 19:55:47 +00:00
|
|
|
<style>
|
|
|
|
html, body
|
|
|
|
{
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-image: url("static/images/index-bg.jpg");
|
2017-05-13 22:25:48 +00:00
|
|
|
background-size: cover;
|
2017-04-16 20:02:41 +00:00
|
|
|
background-position: bottom;
|
2017-04-16 19:55:47 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
|
2017-05-13 22:25:48 +00:00
|
|
|
.text
|
2017-04-16 19:55:47 +00:00
|
|
|
{
|
2017-05-13 22:25:48 +00:00
|
|
|
background-color: rgba(0, 0, 0, 0.6);
|
2017-04-16 19:55:47 +00:00
|
|
|
position: absolute;
|
2017-05-13 22:25:48 +00:00
|
|
|
top: 20%;
|
|
|
|
left: 8%;
|
|
|
|
text-align: center;
|
|
|
|
padding: 5px 20px 5px 20px;
|
2017-04-16 19:55:47 +00:00
|
|
|
font-family: sans-serif;
|
|
|
|
color: rgba(255, 255, 255, 0.9);
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
2017-05-13 22:25:48 +00:00
|
|
|
<div class="text">
|
|
|
|
<h2 class="thank">Thank you for contributing to KawAnime!</h2>
|
|
|
|
<h1 class="loading">Loading application...</h1>
|
|
|
|
</div>
|
2017-04-16 19:55:47 +00:00
|
|
|
</body>
|
2016-11-21 14:33:22 +00:00
|
|
|
</html>
|