74 lines
1.5 KiB
Plaintext
74 lines
1.5 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Dynasty of Knights</title>
|
|
<link rel="stylesheet" href="/css/launcher.css" />
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
height: 100vh;
|
|
|
|
background: url("/images/dok_bg.png") center / cover no-repeat;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-family: sans-serif;
|
|
color: white;
|
|
}
|
|
|
|
.panel {
|
|
background: rgba(0, 0, 0, 0.6);
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
width: 400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="worldmap">
|
|
<svg viewBox="0 0 1358 679" class="map-overlay">
|
|
<a href="/castle">
|
|
<polygon
|
|
class="area"
|
|
points="580,120 750,120 780,250 550,250"
|
|
></polygon>
|
|
</a>
|
|
|
|
<a href="/market">
|
|
<polygon
|
|
class="area"
|
|
points="450,300 900,300 1000,450 350,450"
|
|
></polygon>
|
|
</a>
|
|
|
|
<a href="/church">
|
|
<polygon
|
|
class="area"
|
|
points="250,330 320,330 320,420 250,420"
|
|
></polygon>
|
|
</a>
|
|
|
|
<a href="/portal">
|
|
<polygon
|
|
class="area"
|
|
points="60,120 140,120 140,260 60,260"
|
|
></polygon>
|
|
</a>
|
|
|
|
<a href="/tower">
|
|
<polygon
|
|
class="area"
|
|
points="1080,150 1150,150 1150,300 1080,300"
|
|
></polygon>
|
|
</a>
|
|
</svg>
|
|
</div>
|
|
</body>
|
|
</html>
|