-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (84 loc) · 3.56 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- Setup the viewport for mobile and desktop environments -->
<meta name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />
<!-- Configure linking of this application to the home screen of mobile devices -->
<meta name="apple-mobile-web-app-title" content="app" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="msapplication-tap-highlight" content="no" />
<link rel="apple-touch-icon" href="resource/app/app.png" />
<link rel="manifest" type="application/json" href="/manifest.json" />
<!-- Disable chrome translation requests and automatic phone number linking -->
<meta name="google" value="notranslate" />
<meta name="format-detection" content="telephone=no" />
<!-- Shortcut icon setup -->
<link rel="shortcut icon" type="image/png" href="resource/icons/favicon.png" />
<link rel="mask-icon" href="resource/icons/favicon.png" />
<style>
body {
padding: 0px;
margin: 0px;
width: 100%;
height: 100%;
position: fixed;
-webkit-touch-callout: none !important;
overflow: hidden;
}
.tile-button,
.toolbar-button {
-webkit-background-clip: padding-box;
-moz-background-clip: padding-box;
background-clip: padding-box;
background-color: #fff;
background-image: -webkit-linear-gradient(white, #bdbdbd);
background-image: -moz-linear-gradient(white, #bdbdbd);
background-image: -ms-linear-gradient(white, #bdbdbd);
background-image: -webkit-gradient(linear, center top, center bottom, color-stop(0, white), color-stop(1, #bdbdbd));
background-image: linear-gradient(white, #bdbdbd);
-moz-border-radius: .25rem;
-webkit-border-radius: .25rem;
border-radius: .25rem;
color: #383838;
border: .0625rem solid #646464;
cursor: pointer;
font-weight: bold;
font-size: .9375rem;
text-align: center;
padding-top: .125rem;
padding-bottom: .125rem;
padding-left: 1.25rem;
padding-right: 1.25rem;
height: 1.875rem;
line-height: unset !important;
width: auto;
}
</style>
<title>PyQuest Mobile</title>
<link rel="stylesheet" href="resource/app/css/custom.css">
<link rel="stylesheet" href="resource/app/css/app.css">
<script type="text/javascript" src="js/mobile.js"></script>
<script>navigator.serviceWorker.register("service-worker.js")</script>
<link rel="manifest" type="application/json" href="public/manifest.json" />
<script type="text/javascript" src="js/index.js"></script>
</head>
<body>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&family=Source+Code+Pro&display=swap"
rel="stylesheet">
<script type="text/javascript" src="resource/js/ace/ace.js" charset="utf-8"></script>
<script type="text/javascript" src="js/vista.nocache.js"></script>
<script type="text/javascript" src="js/vm.js"></script>
<script type="text/javascript" src="js/howler.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<noscript>
<h1>JavaScript must be enabled for this app</h1>
</noscript>
</body>
</html>