55 lines
1.7 KiB
HTML
55 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>SeatmapClose</title>
|
|
<style>
|
|
body {
|
|
background-color: #e9e9e9;
|
|
}
|
|
|
|
.container {
|
|
position: absolute;
|
|
text-align: center;
|
|
font-size: 1.2vw;
|
|
top: 50%;
|
|
left: 50%;
|
|
-moz-transform: translateX(-50%) translateY(-50%);
|
|
-webkit-transform: translateX(-50%) translateY(-50%);
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|
|
|
|
.button {
|
|
background-color: grey;
|
|
border: none;
|
|
color: white;
|
|
padding: 0.5vw 1vw;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
font-size: 1.2vw;
|
|
-webkit-transition-duration: 0.4s;
|
|
/* Safari */
|
|
transition-duration: 0.4s;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
}
|
|
</style>
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
|
|
<script src="https://zinomedia.de/seatmap_main/seatmap-inject/seatmap-inject.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<!--<span>Buchung abgebrochen. Sie können dieses Fenster nun schließen oder die<br><br><button id="Saalplanbuchung" class="button">Saalplanbuchung erneut laden.</button></span>-->
|
|
<span>Buchung abgebrochen. Sie können dieses Fenster nun schließen.</button></span>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|