Splashscreen - platshållare

This commit is contained in:
2017-01-18 20:42:36 +01:00
parent df90e4dd9e
commit 778d00dcf6
6 changed files with 54 additions and 2 deletions

48
templates/splash.html Normal file
View File

@@ -0,0 +1,48 @@
<!doctype html>
<html>
<head>
<title> -- Design by Lovén -- </title>
<style>
body {
font-family: sans-serif;
}
.splash-image {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.contact-info {
position: fixed;
left: 50%;
top: 100%;
transform: translate(-50%, -300%);
text-align: center;
}
</style>
</head>
<body>
<div class="splash-image">
<img src="{{ url_for('static', filename='symbol.png') }}" >
<br />
<h2>Design by Lovén</h2>
<h3>UNIKA KLÄDER FÖR AKTIVA BARN</h3>
<br />
<br />
<br />
<br />
<br />
<a href="mailto:info@designbyloven.se">Kontakt</a>
</div>
<div class="contact-info">
</div>
</body>
</html>