KawAnime/index.html

46 lines
832 B
HTML
Raw Normal View History

2016-11-21 14:33:22 +00:00
<!DOCTYPE html>
2017-04-15 14:16:14 +00:00
<html>
<head>
<meta charset="UTF-8">
<title>Electronuxt</title>
<style>
html, body
{
margin: 0;
padding: 0;
/*background: #333;*/
position: relative;
height: 100%;
width: 100%;
background-image: url("static/images/index-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
}
.loading
{
font-family: sans-serif;
color: rgba(255, 255, 255, 0.9);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -70%);
}
.thank
{
font-family: sans-serif;
color: rgba(255, 255, 255, 0.9);
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -70%);
}
</style>
</head>
<body>
<h2 class="thank">Thank you for contributing to KawAnime!</h2>
<h1 class="loading">Loading application...</h1>
</body>
2016-11-21 14:33:22 +00:00
</html>