50 lines
1.2 KiB
HTML
50 lines
1.2 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>WebBestiaryFW Launcher</title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-color: #111;
|
||
|
|
color: white;
|
||
|
|
font-family: 'Montserrat', sans-serif;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
height: 100vh;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
#bestiaryFrame {
|
||
|
|
width: 800px;
|
||
|
|
height: 600px;
|
||
|
|
border: 2px solid white;
|
||
|
|
display: none;
|
||
|
|
margin-top: 20px;
|
||
|
|
}
|
||
|
|
button {
|
||
|
|
font-weight: bold;
|
||
|
|
font-size: 20px;
|
||
|
|
padding: 10px 20px;
|
||
|
|
background: #222;
|
||
|
|
color: white;
|
||
|
|
border: 2px solid white;
|
||
|
|
cursor: pointer;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<h1>WebBestiaryFW Launcher</h1>
|
||
|
|
<button onclick="openBestiary()">Open WebBestiary</button>
|
||
|
|
|
||
|
|
<iframe id="bestiaryFrame" src="./index.html"></iframe>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
function openBestiary() {
|
||
|
|
document.getElementById('bestiaryFrame').style.display = 'block';
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|