forked from IlIIll1/unicyclehero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (53 loc) · 2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>Unicycle Hero</title>
<link rel="stylesheet" type="text/css" href="/assets/css/main.css">
<link rel="stylesheet" type="text/css" href="/assets/css/custom.css">
<style>
/* Make the Unicycle window fullscreen */
.gm-iframe-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
}
.gm-iframe {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="g-content">
<section class="banner" align="center"> </section>
<section class="mid-ct section-gm">
<div class="container">
<div class="columns">
<div class="column is-12-tablet is-9-desktop">
<div class="article gm-container">
<div class="gm-iframe-container">
<iframe class="gm-iframe" id="gm-area" src="https://unicyclehero.github.io/file/unicycle-hero" frameborder="0" allowfullscreen></iframe>
</div>
<div class="article-header">
<div class="text">
<h1>Unicycle Hero</h1>
</div>
<div class="bt-group-2">
<a href="#" onclick="open_fullscreen()"><span class="icon-fullscreen"></span>Fullscreen</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<script type="text/javascript" src="/assets/js/main.js"></script>
<script type="text/javascript" src="/assets/js/custom.js"></script>
</body>
</html>