first commit
This commit is contained in:
50
wrapper.html
Normal file
50
wrapper.html
Normal file
@@ -0,0 +1,50 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user