dok/views/launcher.ejs
2026-03-11 17:49:10 +00:00

76 lines
1.6 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="map-container">
<img src="/images/dok_bg.png" class="map" />
<svg viewBox="0 0 2048 1024" class="map-overlay">
<a href="/castle">
<polygon
class="area"
points="920,230 1120,230 1180,350 860,350"
></polygon>
</a>
<a href="/market">
<polygon
class="area"
points="870,500 1170,500 1230,630 810,630"
></polygon>
</a>
<a href="/portal">
<polygon
class="area"
points="230,140 330,140 350,310 210,310"
></polygon>
</a>
<a href="/tower">
<polygon
class="area"
points="1500,260 1600,260 1600,420 1500,420"
></polygon>
</a>
<a href="/church">
<polygon
class="area"
points="960,420 1030,420 1030,520 960,520"
></polygon>
</a>
</svg>
</div>
</body>
</html>