-
Notifications
You must be signed in to change notification settings - Fork 1
/
siminstructions.html
138 lines (123 loc) · 3.2 KB
/
siminstructions.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!doctype html>
<html lang="en" data-framework="typescript">
<head>
<meta charset="utf-8">
<title>Make Instructions</title>
<style type="text/css">
@import "/semantic.css";
</style>
<style>
html {
padding: 0;
margin: 0;
}
body {
position: relative;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
font-family: "Lucida Console", Monaco, monospace;
}
div {
/*undo semantic UI*/
box-sizing: content-box;
line-height: normal;
}
img {
border: 0;
}
.organization {
position: absolute;
bottom: 2rem;
right: 2rem;
height: 4rem;
}
h1 {
font-size: 2em;
font-weight: normal;
color: rgba(0, 0, 0, 0.87);
font-family: 'Segoe UI', 'Helvetica Neue', Arial, Helvetica, sans-serif;
display: block;
text-align: center;
}
#front-panel .board-svg {
position: absolute;
left: 2rem;
width: 300px;
top: 16rem;
}
#proj-title {
width: 100%;
font-size: 55px;
margin-top: 20px;
}
#proj-code {
width: 300px;
height: 400px;
position: absolute;
right: 2rem;
top: 16rem;
}
#proj-code-container {
width: 100%;
height: 100%;
font-size: 4px;
overflow: hidden;
display: none;
}
#proj-code-spinner {
width: 100%;
}
.back-panel svg {
position: relative;
margin: 0 auto;
left: inherit;
bottom: -7px;
}
</style>
</head>
<body>
<script>
// This line gets patched up by the cloud
var pxtConfig = {
"relprefix": "/",
"verprefix": "",
"workerjs": "/worker.js",
"monacoworkerjs": "/monacoworker.js",
"gifworkerjs": "/gifjs/gif.worker.js",
"serviceworkerjs": "/serviceworker.js",
"typeScriptWorkerJs": "/tsworker.js",
"pxtVersion": "9.1.11",
"pxtRelId": "localDirRelId",
"pxtCdnUrl": "/",
"commitCdnUrl": "/",
"blobCdnUrl": "/",
"cdnUrl": "/",
"targetVersion": "0.0.0",
"targetRelId": "",
"targetUrl": "",
"targetId": "stm32iotnode",
"simUrl": "/simulator.html",
"simserviceworkerUrl": "/simulatorserviceworker.js",
"simworkerconfigUrl": "/workerConfig.js",
"partsUrl": "/siminstructions.html",
"runUrl": "/run.html",
"docsUrl": "/docs.html",
"multiUrl": "/multi.html",
"asseteditorUrl": "/asseteditor.html",
"skillmapUrl": "/skillmap.html",
"authcodeUrl": "/authcode.html",
"multiplayerUrl": "/multiplayer.html",
"kioskUrl": "/kiosk.html",
"isStatic": true
};
</script>
<script src="/pxtsim.js"></script>
<script src="/common-sim.js"></script>
<script src="/sim.js"></script>
<div id="front-panel" class="instr-panel">
<h1 id="proj-title"></h1>
</div>
</body>
</html>