@robotical/martyblocksjr 4.2.2 → 4.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/editions/free/src/app.bundle.js +1 -1
- package/editions/free/src/css/editor.css +5 -0
- package/editions/free/src/css/editorleftpanel.css +12 -6
- package/editions/free/src/inapp/about.html +55 -26
- package/editions/free/src/inapp/blocks.html +16 -459
- package/editions/free/src/inapp/images/interface.png +0 -0
- package/editions/free/src/inapp/images/paint.png +0 -0
- package/editions/free/src/inapp/interface.html +136 -123
- package/editions/free/src/inapp/style/about.css +333 -21
- package/editions/free/src/inapp/style/blocks.css +423 -82
- package/editions/free/src/inapp/style/interface.css +178 -453
- package/editions/free/src/localizations/bg.json +36 -2
- package/editions/free/src/localizations/ca.json +36 -2
- package/editions/free/src/localizations/cs.json +36 -2
- package/editions/free/src/localizations/cy.json +36 -2
- package/editions/free/src/localizations/da.json +36 -2
- package/editions/free/src/localizations/de.json +36 -2
- package/editions/free/src/localizations/el.json +36 -2
- package/editions/free/src/localizations/en.json +114 -7
- package/editions/free/src/localizations/es.json +36 -2
- package/editions/free/src/localizations/fi.json +36 -2
- package/editions/free/src/localizations/fr.json +36 -2
- package/editions/free/src/localizations/it.json +36 -2
- package/editions/free/src/localizations/ja.json +36 -2
- package/editions/free/src/localizations/ko.json +36 -2
- package/editions/free/src/localizations/nl.json +36 -2
- package/editions/free/src/localizations/no.json +36 -2
- package/editions/free/src/localizations/pl.json +36 -2
- package/editions/free/src/localizations/pt-br.json +36 -2
- package/editions/free/src/localizations/pt.json +36 -2
- package/editions/free/src/localizations/sv.json +36 -2
- package/editions/free/src/localizations/th.json +36 -2
- package/editions/free/src/localizations/tr.json +36 -2
- package/editions/free/src/localizations/uk.json +36 -2
- package/editions/free/src/localizations/zh-cn.json +36 -2
- package/editions/free/src/localizations/zh-tw.json +36 -2
- package/package.json +1 -1
- package/scripts/a11y-structure.mjs +9 -2
- package/tests/BlockGuideRegistry.test.js +60 -0
- package/tests/MartyManager.test.js +88 -0
- package/tests/e2e/accessibility.e2e.test.js +153 -10
- package/tests/e2e/blocks-jr-hidden-blocks.e2e.test.js +84 -0
- package/tests/e2e/chromium-79-smoke.test.js +12 -17
- package/tests/e2e/microbit-extension-project-reload.e2e.test.js +1 -6
- package/tests/e2e/project-load-progress-loop.e2e.test.js +1 -6
- package/tests/e2e/sidebar-scrollbars.e2e.test.js +179 -0
|
@@ -1,501 +1,226 @@
|
|
|
1
1
|
@import url('../../css/font.css');
|
|
2
2
|
|
|
3
|
-
html
|
|
4
|
-
-webkit-user-select: none;
|
|
5
|
-
height: 100%;
|
|
6
|
-
}
|
|
7
|
-
|
|
3
|
+
html,
|
|
8
4
|
body {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
width: ${css_vh(164)};
|
|
14
|
-
margin-left: auto;
|
|
15
|
-
margin-right: auto;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
#content-buffer {
|
|
19
|
-
color: #808080;
|
|
20
|
-
margin-left: ${css_vh(14.31)};
|
|
21
|
-
height: ${css_vh(7.24)};
|
|
22
|
-
font-size: ${css_vh(2.3)};
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
/* Guide Elements */
|
|
26
|
-
|
|
27
|
-
.interface-dot {
|
|
28
|
-
height: ${Math.max(1, Math.ceil(5 * scaleMultiplier))}px;
|
|
29
|
-
width: ${Math.max(1, Math.ceil(5 * scaleMultiplier))}px;
|
|
30
|
-
border-radius: 50%;
|
|
31
|
-
background-color: #333333;
|
|
32
|
-
position: absolute;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
.interface-vertical-line {
|
|
36
|
-
border-left: 1px solid black;
|
|
37
|
-
position: absolute;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.interface-horizontal-line {
|
|
41
|
-
border-top: 1px solid black;
|
|
42
|
-
position: absolute;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.interface-button {
|
|
46
|
-
font-family: 'Lato Regular', arial, sans-serif;
|
|
47
|
-
border-radius: 50%;
|
|
48
|
-
position: absolute;
|
|
49
|
-
background-color: #ffffff;
|
|
50
|
-
border: 1px solid #808080;
|
|
51
|
-
width: ${css_vh(5.26)};
|
|
52
|
-
height: ${css_vh(5.26)};
|
|
53
|
-
text-align: center;
|
|
54
|
-
cursor: pointer;
|
|
55
|
-
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
56
|
-
padding: 0;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.interface-button-text {
|
|
60
|
-
padding: ${css_vh(1.15)};
|
|
61
|
-
font-size: ${css_vh(2.3)};
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
.interface-button-selected {
|
|
65
|
-
border: 1px solid #2898CD;
|
|
66
|
-
color: #2898CD;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
/* Guide 1 - Interface Guide */
|
|
70
|
-
|
|
71
|
-
/* 1. Save */
|
|
72
|
-
|
|
73
|
-
#interface-button-save {
|
|
74
|
-
left: ${css_vh(30.59)};
|
|
75
|
-
top: ${css_vh(-6.25)};
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
#interface-vertical-line-save {
|
|
79
|
-
height: ${css_vh(2.47)};
|
|
80
|
-
top: ${css_vh(-0.82)};
|
|
81
|
-
left: ${css_vh(33.55)};
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
#interface-dot-save {
|
|
85
|
-
top: ${css_vh(1.15)};
|
|
86
|
-
left: ${css_vh(33.22)};
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
/* 2. Stage */
|
|
90
|
-
|
|
91
|
-
#interface-button-stage {
|
|
92
|
-
left: ${css_vh(37.34)};
|
|
93
|
-
top: ${css_vh(-6.25)};
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
#interface-vertical-line-stage-1 {
|
|
97
|
-
height: ${css_vh(26.4)};
|
|
98
|
-
top: ${css_vh(-0.82)};
|
|
99
|
-
left: ${css_vh(39.97)};
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
#interface-horizontal-line-stage-1 {
|
|
103
|
-
width: ${css_vh(1.81)};
|
|
104
|
-
top: ${css_vh(25.59)};
|
|
105
|
-
left: ${css_vh(39.97)};
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
#interface-vertical-line-stage-2 {
|
|
109
|
-
height: ${css_vh(34.05)};
|
|
110
|
-
top: ${css_vh(7.07)};
|
|
111
|
-
left: ${css_vh(41.61)};
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
overflow: hidden;
|
|
8
|
+
-webkit-user-select: none;
|
|
112
9
|
}
|
|
113
10
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
top: ${css_vh(7.07)};
|
|
117
|
-
left: ${css_vh(41.61)};
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
#interface-horizontal-line-stage-3 {
|
|
121
|
-
width: ${css_vh(1.32)};
|
|
122
|
-
top: ${css_vh(41.12)};
|
|
123
|
-
left: ${css_vh(41.61)};
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
/* 3. Presentation Mode */
|
|
127
|
-
|
|
128
|
-
#interface-button-presentation-mode {
|
|
129
|
-
left: ${css_vh(43.09)};
|
|
130
|
-
top: ${css_vh(-6.25)};
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
#interface-vertical-line-presentation-mode {
|
|
134
|
-
height: ${css_vh(2.47)};
|
|
135
|
-
top: ${css_vh(-0.82)};
|
|
136
|
-
left: ${css_vh(45.72)};
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
#interface-dot-presentation-mode {
|
|
140
|
-
top: ${css_vh(1.32)};
|
|
141
|
-
left: ${css_vh(45.39)};
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
/* 4. Grid */
|
|
145
|
-
|
|
146
|
-
#interface-button-grid {
|
|
147
|
-
left: ${css_vh(48.85)};
|
|
148
|
-
top: ${css_vh(-6.25)};
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
#interface-vertical-line-grid {
|
|
152
|
-
height: ${css_vh(2.14)};
|
|
153
|
-
top: ${css_vh(-0.82)};
|
|
154
|
-
left: ${css_vh(51.64)};
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
#interface-dot-grid {
|
|
158
|
-
top: ${css_vh(1.32)};
|
|
159
|
-
left: ${css_vh(51.32)};
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
/* 5. Change Background */
|
|
163
|
-
|
|
164
|
-
#interface-button-add-text {
|
|
165
|
-
left: ${css_vh(60.69)};
|
|
166
|
-
top: ${css_vh(-6.25)};
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
#interface-vertical-line-add-text {
|
|
170
|
-
height: ${css_vh(1.97)};
|
|
171
|
-
top: ${css_vh(-0.82)};
|
|
172
|
-
left: ${css_vh(63.32)};
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
#interface-dot-add-text {
|
|
176
|
-
top: ${css_vh(1.15)};
|
|
177
|
-
left: ${css_vh(62.99)};
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
/* 6. Add Text */
|
|
181
|
-
|
|
182
|
-
#interface-button-change-background {
|
|
183
|
-
left: ${css_vh(66.78)};
|
|
184
|
-
top: ${css_vh(-6.25)};
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
#interface-vertical-line-change-background {
|
|
188
|
-
height: ${css_vh(2.14)};
|
|
189
|
-
top: ${css_vh(-0.82)};
|
|
190
|
-
left: ${css_vh(69.41)};
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
#interface-dot-change-background {
|
|
194
|
-
top: ${css_vh(1.32)};
|
|
195
|
-
left: ${css_vh(69.08)};
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
/* 7. Reset Characters */
|
|
199
|
-
|
|
200
|
-
#interface-button-reset-characters {
|
|
201
|
-
left: ${css_vh(77.47)};
|
|
202
|
-
top: ${css_vh(-6.25)};
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
#interface-vertical-line-reset-characters {
|
|
206
|
-
height: ${css_vh(1.81)};
|
|
207
|
-
top: ${css_vh(-0.82)};
|
|
208
|
-
left: ${css_vh(80.10)};
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
#interface-dot-reset-characters {
|
|
212
|
-
top: ${css_vh(0.99)};
|
|
213
|
-
left: ${css_vh(79.77)};
|
|
214
|
-
}
|
|
215
|
-
|
|
216
|
-
/* 8. Green Flag */
|
|
217
|
-
|
|
218
|
-
#interface-button-green-flag {
|
|
219
|
-
left: ${css_vh(83.39)};
|
|
220
|
-
top: ${css_vh(-6.25)};
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
#interface-vertical-line-green-flag {
|
|
224
|
-
height: ${css_vh(1.81)};
|
|
225
|
-
top: ${css_vh(-0.82)};
|
|
226
|
-
left: ${css_vh(86.18)};
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
#interface-dot-green-flag {
|
|
230
|
-
top: ${css_vh(0.99)};
|
|
231
|
-
left: ${css_vh(85.86)};
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
/* 9. Pages */
|
|
235
|
-
|
|
236
|
-
#interface-button-pages {
|
|
237
|
-
left: ${css_vh(96.22)};
|
|
238
|
-
top: ${css_vh(-6.25)};
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
#interface-vertical-line-pages {
|
|
242
|
-
height: ${css_vh(2.47)};
|
|
243
|
-
top: ${css_vh(-0.82)};
|
|
244
|
-
left: ${css_vh(99.01)};
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
#interface-dot-pages {
|
|
248
|
-
top: ${css_vh(1.64)};
|
|
249
|
-
left: ${css_vh(98.68)};
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
/* 10. Project Information */
|
|
253
|
-
|
|
254
|
-
#interface-button-project-information {
|
|
255
|
-
left: ${css_vh(106.09)};
|
|
256
|
-
top: ${css_vh(-6.25)};
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
#interface-vertical-line-project-information {
|
|
260
|
-
height: ${css_vh(2.14)};
|
|
261
|
-
top: ${css_vh(-0.82)};
|
|
262
|
-
left: ${css_vh(108.88)};
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
#interface-dot-project-information {
|
|
266
|
-
top: ${css_vh(1.32)};
|
|
267
|
-
left: ${css_vh(108.55)};
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
/* 16. Characters */
|
|
271
|
-
|
|
272
|
-
#interface-button-characters {
|
|
273
|
-
left: ${css_vh(18.91)};
|
|
274
|
-
top: ${css_vh(73.68)};
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
#interface-vertical-line-characters-1 {
|
|
278
|
-
height: ${css_vh(1.32)};
|
|
279
|
-
top: ${css_vh(36.18)};
|
|
280
|
-
left: ${css_vh(15.95)};
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
#interface-vertical-line-characters-3 {
|
|
284
|
-
height: ${css_vh(1.32)};
|
|
285
|
-
top: ${css_vh(36.18)};
|
|
286
|
-
left: ${css_vh(37.17)};
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
#interface-horizontal-line-characters {
|
|
290
|
-
width: ${css_vh(21.5)};
|
|
291
|
-
top: ${css_vh(37.50)};
|
|
292
|
-
left: ${css_vh(15.95)};
|
|
293
|
-
}
|
|
294
|
-
|
|
295
|
-
#interface-vertical-line-characters-2 {
|
|
296
|
-
height: ${css_vh(36.18)};
|
|
297
|
-
top: ${css_vh(37.50)};
|
|
298
|
-
left: ${css_vh(21.71)};
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
/* 15. Block Categories */
|
|
302
|
-
|
|
303
|
-
#interface-button-block-categories {
|
|
304
|
-
left: ${css_vh(29.61)};
|
|
305
|
-
top: ${css_vh(73.68)};
|
|
306
|
-
}
|
|
307
|
-
|
|
308
|
-
#interface-vertical-line-block-categories-1 {
|
|
309
|
-
height: ${css_vh(0.99)};
|
|
310
|
-
top: ${css_vh(50.00)};
|
|
311
|
-
left: ${css_vh(15.63)};
|
|
312
|
-
}
|
|
313
|
-
|
|
314
|
-
#interface-vertical-line-block-categories-3 {
|
|
315
|
-
height: ${css_vh(0.99)};
|
|
316
|
-
top: ${css_vh(50.00)};
|
|
317
|
-
left: ${css_vh(46.05)};
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
#interface-horizontal-line-block-categories {
|
|
321
|
-
width: ${css_vh(30.59)};
|
|
322
|
-
top: ${css_vh(50.99)};
|
|
323
|
-
left: ${css_vh(15.63)};
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
#interface-vertical-line-block-categories-2 {
|
|
327
|
-
height: ${css_vh(22.70)};
|
|
328
|
-
top: ${css_vh(50.99)};
|
|
329
|
-
left: ${css_vh(32.40)};
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
/* 14. Block Palette */
|
|
333
|
-
|
|
334
|
-
#interface-button-block-palette {
|
|
335
|
-
left: ${css_vh(59.70)};
|
|
336
|
-
top: ${css_vh(73.68)};
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
#interface-vertical-line-blocks-palette-1 {
|
|
340
|
-
height: ${css_vh(1.32)};
|
|
341
|
-
top: ${css_vh(50.66)};
|
|
342
|
-
left: ${css_vh(48.36)};
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
#interface-vertical-line-blocks-palette-3 {
|
|
346
|
-
height: ${css_vh(1.32)};
|
|
347
|
-
top: ${css_vh(50.66)};
|
|
348
|
-
left: ${css_vh(98.1)};
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
#interface-horizontal-line-blocks-palette {
|
|
352
|
-
width: ${css_vh(50.16)};
|
|
353
|
-
top: ${css_vh(51.97)};
|
|
354
|
-
left: ${css_vh(48.36)};
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
#interface-vertical-line-blocks-palette-2 {
|
|
358
|
-
height: ${css_vh(21.71)};
|
|
359
|
-
top: ${css_vh(51.97)};
|
|
360
|
-
left: ${css_vh(62.50)};
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
/* 13. Programming Area */
|
|
364
|
-
|
|
365
|
-
#interface-button-programming-area {
|
|
366
|
-
left: ${css_vh(68.09)};
|
|
367
|
-
top: ${css_vh(73.68)};
|
|
11
|
+
body {
|
|
12
|
+
background: #F9F8F2;
|
|
368
13
|
}
|
|
369
14
|
|
|
370
|
-
#
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
15
|
+
#content,
|
|
16
|
+
#ipad-project-view-wrapper {
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
width: 100%;
|
|
19
|
+
height: 100%;
|
|
374
20
|
}
|
|
375
21
|
|
|
376
|
-
#
|
|
377
|
-
|
|
378
|
-
left: ${css_vh(70.39)};
|
|
22
|
+
#content {
|
|
23
|
+
padding: 2vh 1.5vw;
|
|
379
24
|
}
|
|
380
25
|
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
#interface-button-programming-script {
|
|
384
|
-
left: ${css_vh(76.48)};
|
|
385
|
-
top: ${css_vh(73.68)};
|
|
26
|
+
.learn-tab {
|
|
27
|
+
display: none;
|
|
386
28
|
}
|
|
387
29
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
top: ${css_vh(63.32)};
|
|
391
|
-
left: ${css_vh(65.79)};
|
|
30
|
+
.learn-tab-selected {
|
|
31
|
+
display: flex;
|
|
392
32
|
}
|
|
393
33
|
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
34
|
+
.learn-interface {
|
|
35
|
+
box-sizing: border-box;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
width: 100%;
|
|
39
|
+
height: 100%;
|
|
398
40
|
}
|
|
399
41
|
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
42
|
+
.interface-preview {
|
|
43
|
+
position: relative;
|
|
44
|
+
flex: 0 1 auto;
|
|
45
|
+
width: min(72vw, calc(80vh * 1.93731));
|
|
46
|
+
min-width: 0;
|
|
47
|
+
margin-right: 1.5vw;
|
|
48
|
+
border: 2px solid #D8D2C1;
|
|
49
|
+
border-radius: 12px;
|
|
50
|
+
background: #FFFFFF;
|
|
51
|
+
box-shadow: 0 5px 18px rgba(38, 38, 38, 0.18);
|
|
404
52
|
}
|
|
405
53
|
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
54
|
+
.ipad-project-view {
|
|
55
|
+
position: relative;
|
|
56
|
+
z-index: 0;
|
|
57
|
+
display: block;
|
|
58
|
+
width: 100%;
|
|
59
|
+
height: auto;
|
|
60
|
+
border-radius: 10px;
|
|
410
61
|
}
|
|
411
62
|
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
left:
|
|
416
|
-
|
|
63
|
+
.interface-connectors {
|
|
64
|
+
position: absolute;
|
|
65
|
+
top: 0;
|
|
66
|
+
left: 0;
|
|
67
|
+
z-index: 1;
|
|
68
|
+
width: 100%;
|
|
69
|
+
height: 100%;
|
|
70
|
+
overflow: visible;
|
|
71
|
+
pointer-events: none;
|
|
417
72
|
}
|
|
418
73
|
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
74
|
+
.interface-connector line {
|
|
75
|
+
fill: none;
|
|
76
|
+
stroke: #4A4A4A;
|
|
77
|
+
stroke-width: 2;
|
|
78
|
+
stroke-linecap: round;
|
|
79
|
+
vector-effect: non-scaling-stroke;
|
|
423
80
|
}
|
|
424
81
|
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
82
|
+
.interface-connector circle {
|
|
83
|
+
fill: #FFFFFF;
|
|
84
|
+
stroke: #4A4A4A;
|
|
85
|
+
stroke-width: 2;
|
|
86
|
+
vector-effect: non-scaling-stroke;
|
|
429
87
|
}
|
|
430
88
|
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
89
|
+
.interface-connector-selected line,
|
|
90
|
+
.interface-connector-selected circle {
|
|
91
|
+
stroke: #167DA8;
|
|
92
|
+
stroke-width: 3;
|
|
435
93
|
}
|
|
436
94
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
top: ${css_vh(51.97)};
|
|
440
|
-
left: ${css_vh(105.43)};
|
|
95
|
+
.interface-connector-selected circle {
|
|
96
|
+
fill: #167DA8;
|
|
441
97
|
}
|
|
442
98
|
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
99
|
+
.interface-button {
|
|
100
|
+
box-sizing: border-box;
|
|
101
|
+
position: absolute;
|
|
102
|
+
left: var(--x);
|
|
103
|
+
top: var(--y);
|
|
104
|
+
z-index: 2;
|
|
105
|
+
display: flex;
|
|
106
|
+
align-items: center;
|
|
107
|
+
justify-content: center;
|
|
108
|
+
width: 2.1vw;
|
|
109
|
+
min-width: 24px;
|
|
110
|
+
max-width: 34px;
|
|
111
|
+
height: 2.1vw;
|
|
112
|
+
min-height: 24px;
|
|
113
|
+
max-height: 34px;
|
|
114
|
+
border: 2px solid #777777;
|
|
115
|
+
border-radius: 50%;
|
|
116
|
+
background: rgba(255, 255, 255, 0.96);
|
|
117
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.32);
|
|
118
|
+
color: #4A4A4A;
|
|
119
|
+
font-family: 'Lato Regular', Arial, sans-serif;
|
|
120
|
+
font-size: 13px;
|
|
121
|
+
font-weight: bold;
|
|
122
|
+
line-height: 1;
|
|
123
|
+
cursor: pointer;
|
|
124
|
+
transform: translate(-50%, -50%);
|
|
125
|
+
transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
|
|
126
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.interface-button > span {
|
|
130
|
+
position: relative;
|
|
131
|
+
z-index: 1;
|
|
132
|
+
color: inherit;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.interface-button:hover,
|
|
136
|
+
.interface-button:focus {
|
|
137
|
+
border-color: #167DA8;
|
|
138
|
+
color: #167DA8;
|
|
139
|
+
transform: translate(-50%, -50%) scale(1.1);
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.interface-button-selected,
|
|
143
|
+
.interface-button-selected:hover,
|
|
144
|
+
.interface-button-selected:focus {
|
|
145
|
+
border: 3px solid #167DA8;
|
|
146
|
+
background: #FFFFFF;
|
|
147
|
+
box-shadow: 0 0 0 2px rgba(22, 125, 168, 0.22), 0 2px 5px rgba(0, 0, 0, 0.32);
|
|
148
|
+
color: #0D668D;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.interface-button:focus,
|
|
152
|
+
.interface-button-selected:focus {
|
|
153
|
+
outline: none;
|
|
154
|
+
box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 5px #167DA8, 0 2px 5px rgba(0, 0, 0, 0.32);
|
|
447
155
|
}
|
|
448
156
|
|
|
449
157
|
#interface-key {
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
158
|
+
box-sizing: border-box;
|
|
159
|
+
flex: 0 0 auto;
|
|
160
|
+
width: min(24vw, 340px);
|
|
161
|
+
min-width: 220px;
|
|
162
|
+
max-height: 88vh;
|
|
163
|
+
overflow: auto;
|
|
164
|
+
padding: 22px 22px 24px;
|
|
165
|
+
border: 3px solid #F4AD46;
|
|
166
|
+
border-radius: 16px;
|
|
167
|
+
background: #FFFDF5;
|
|
168
|
+
box-shadow: 0 4px 14px rgba(38, 38, 38, 0.14);
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.interface-key-eyebrow {
|
|
172
|
+
margin-bottom: 10px;
|
|
173
|
+
color: #996116;
|
|
174
|
+
font-size: 13px;
|
|
175
|
+
font-weight: bold;
|
|
176
|
+
letter-spacing: 0.08em;
|
|
177
|
+
text-transform: uppercase;
|
|
457
178
|
}
|
|
458
179
|
|
|
459
180
|
#interface-key-header {
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
181
|
+
color: #167DA8;
|
|
182
|
+
font-size: 24px;
|
|
183
|
+
font-weight: bold;
|
|
184
|
+
line-height: 1.2;
|
|
464
185
|
}
|
|
465
186
|
|
|
466
187
|
#interface-key-description {
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
font-size: ${css_vh(2.3)};
|
|
472
|
-
margin-right: ${css_vh(0.82)};
|
|
473
|
-
margin-left: ${css_vh(3.29)};
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
#video-wrapper {
|
|
477
|
-
margin-top: ${css_vh(1.97)};
|
|
478
|
-
float: left;
|
|
479
|
-
margin-left: ${css_vh(9.05)};
|
|
188
|
+
margin-top: 14px;
|
|
189
|
+
color: #555555;
|
|
190
|
+
font-size: 17px;
|
|
191
|
+
line-height: 1.45;
|
|
480
192
|
}
|
|
481
193
|
|
|
482
|
-
|
|
483
|
-
|
|
194
|
+
.interface-key-hint {
|
|
195
|
+
margin-top: 24px;
|
|
196
|
+
padding-top: 16px;
|
|
197
|
+
border-top: 1px solid #E3D8BF;
|
|
198
|
+
color: #777777;
|
|
199
|
+
font-size: 14px;
|
|
200
|
+
line-height: 1.4;
|
|
484
201
|
}
|
|
485
202
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
203
|
+
@media (max-width: 900px) {
|
|
204
|
+
#content {
|
|
205
|
+
padding: 1.5vh 1vw;
|
|
206
|
+
}
|
|
489
207
|
|
|
490
|
-
.
|
|
491
|
-
|
|
492
|
-
|
|
208
|
+
.interface-preview {
|
|
209
|
+
width: min(70vw, calc(80vh * 1.93731));
|
|
210
|
+
margin-right: 1vw;
|
|
211
|
+
}
|
|
493
212
|
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
}
|
|
213
|
+
#interface-key {
|
|
214
|
+
width: 27vw;
|
|
215
|
+
min-width: 190px;
|
|
216
|
+
padding: 16px;
|
|
217
|
+
}
|
|
499
218
|
|
|
219
|
+
#interface-key-header {
|
|
220
|
+
font-size: 20px;
|
|
221
|
+
}
|
|
500
222
|
|
|
501
|
-
|
|
223
|
+
#interface-key-description {
|
|
224
|
+
font-size: 15px;
|
|
225
|
+
}
|
|
226
|
+
}
|