forked from jummbus/jummbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_debug.html
More file actions
71 lines (69 loc) · 1.63 KB
/
index_debug.html
File metadata and controls
71 lines (69 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>BeepBox DEBUG</title>
<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="black" />
<meta name="theme-color" content="#444" />
<meta name="format-detection" content="telephone=no" />
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" rel="stylesheet" media="none" onload="if (this.media != 'all') this.media='all';" /> <!-- this is a trick to load CSS asynchronously. -->
<meta name="robots" content="noindex, nofollow" />
<style type="text/css">
body {
margin: auto;
background: #000;
font-family: 'Roboto', sans-serif;
font-size: large;
line-height: 1.3;
color: #fff;
}
h1 {
font-size: 30px;
text-align: center;
}
.centerDiv {
margin: 0px auto;
}
a {
color: #98f;
}
#beepboxEditorContainer {
min-height: 645px;
}
/* wide screen */
@media (min-width: 701px) {
body {
width: 700px;
}
.column-container {
display: flex;
justify-content: space-between;
}
.instructions-column {
width: 375px;
}
.twitter-column {
width: 300px;
}
}
/* narrow screen */
@media (max-width: 700px) {
body {
width: 100vw;
}
.column-container {
display: flex;
flex-direction: column;
align-items: center;
}
}
</style>
</head>
<body>
<div id="beepboxEditorContainer"></div>
<h1>BeepBox DEBUG</h1>
<script src="beepbox_editor.js"></script>
</body></html>