mx3d 2024.6.122 → 2024.8.2-8.2
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/index.d.ts +47 -12
- package/mx3d.min.js +1 -1
- package/package.json +11 -6
- package/docs/.nojekyll +0 -0
- package/docs/README.md +0 -24
- package/docs/_sidebar.md +0 -29
- package/docs/cabinet/24_back.jpg +0 -0
- package/docs/cabinet/24_font.jpg +0 -0
- package/docs/cabinet/43_back.jpg +0 -0
- package/docs/cabinet/43_font.jpg +0 -0
- package/docs/cabinet/cabinet.md +0 -250
- package/docs/camera.md +0 -109
- package/docs/css/dark.css +0 -979
- package/docs/css/local.google.fonts.css +0 -295
- package/docs/css/vue.css +0 -1025
- package/docs/fonts/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2 +0 -0
- package/docs/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2 +0 -0
- package/docs/fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdu.woff2 +0 -0
- package/docs/gui/2D.md +0 -153
- package/docs/gui/3D.md +0 -154
- package/docs/gui/bg.png +0 -0
- package/docs/heatMap/heatMap.md +0 -290
- package/docs/index.html +0 -89
- package/docs/js/bootstrap/bootstrap-theme.min.css +0 -5
- package/docs/js/bootstrap/bootstrap.min.css +0 -5
- package/docs/js/bootstrap/bootstrap.min.js +0 -1
- package/docs/js/bootstrap/jquery.min.js +0 -1
- package/docs/js/docsify@4.min.js +0 -1
- package/docs/js/search.min.js +0 -1
- package/docs/models/capacity.md +0 -88
- package/docs/models/effect.md +0 -73
- package/docs/models/event.md +0 -100
- package/docs/models/line.md +0 -97
- package/docs/models/model.md +0 -164
- package/docs/models/modelmgr.md +0 -79
- package/docs/project/projectmgr.md +0 -64
- package/docs/releases.md +0 -119
- package/docs/started/environment.md +0 -103
- package/docs/started/quickstart.md +0 -112
package/docs/css/dark.css
DELETED
|
@@ -1,979 +0,0 @@
|
|
|
1
|
-
@import "./local.google.fonts.css";
|
|
2
|
-
* {
|
|
3
|
-
-webkit-font-smoothing: antialiased;
|
|
4
|
-
-webkit-overflow-scrolling: touch;
|
|
5
|
-
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
6
|
-
-webkit-text-size-adjust: none;
|
|
7
|
-
-webkit-touch-callout: none;
|
|
8
|
-
box-sizing: border-box
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
body:not(.ready) {
|
|
12
|
-
overflow: hidden
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
body:not(.ready) .app-nav,
|
|
16
|
-
body:not(.ready)>nav,
|
|
17
|
-
body:not(.ready) [data-cloak] {
|
|
18
|
-
display: none
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
div#app {
|
|
22
|
-
font-size: 30px;
|
|
23
|
-
font-weight: lighter;
|
|
24
|
-
margin: 40vh auto;
|
|
25
|
-
text-align: center
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
div#app:empty:before {
|
|
29
|
-
content: "Loading..."
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.emoji {
|
|
33
|
-
height: 1.2rem;
|
|
34
|
-
vertical-align: middle
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.progress {
|
|
38
|
-
background-color: var(--theme-color, #ea6f5a);
|
|
39
|
-
height: 2px;
|
|
40
|
-
left: 0;
|
|
41
|
-
position: fixed;
|
|
42
|
-
right: 0;
|
|
43
|
-
top: 0;
|
|
44
|
-
transition: width .2s, opacity .4s;
|
|
45
|
-
width: 0;
|
|
46
|
-
z-index: 999999
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
.search .search-keyword,
|
|
50
|
-
.search a:hover {
|
|
51
|
-
color: var(--theme-color, #ea6f5a)
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.search .search-keyword {
|
|
55
|
-
font-style: normal;
|
|
56
|
-
font-weight: 700
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
body,
|
|
60
|
-
html {
|
|
61
|
-
height: 100%
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
body {
|
|
65
|
-
-moz-osx-font-smoothing: grayscale;
|
|
66
|
-
-webkit-font-smoothing: antialiased;
|
|
67
|
-
color: #c8c8c8;
|
|
68
|
-
font-family: Source Sans Pro, Helvetica Neue, Arial, sans-serif;
|
|
69
|
-
font-size: 15px;
|
|
70
|
-
letter-spacing: 0;
|
|
71
|
-
margin: 0;
|
|
72
|
-
overflow-x: hidden
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
img {
|
|
76
|
-
max-width: 100%
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
a[disabled] {
|
|
80
|
-
cursor: not-allowed;
|
|
81
|
-
opacity: .6
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
kbd {
|
|
85
|
-
border: 1px solid #ccc;
|
|
86
|
-
border-radius: 3px;
|
|
87
|
-
display: inline-block;
|
|
88
|
-
font-size: 12px!important;
|
|
89
|
-
line-height: 12px;
|
|
90
|
-
margin-bottom: 3px;
|
|
91
|
-
padding: 3px 5px;
|
|
92
|
-
vertical-align: middle
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
li input[type=checkbox] {
|
|
96
|
-
margin: 0 .2em .25em 0;
|
|
97
|
-
vertical-align: middle
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.app-nav {
|
|
101
|
-
margin: 25px 60px 0 0;
|
|
102
|
-
position: absolute;
|
|
103
|
-
right: 0;
|
|
104
|
-
text-align: right;
|
|
105
|
-
z-index: 10
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.app-nav.no-badge {
|
|
109
|
-
margin-right: 25px
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
.app-nav p {
|
|
113
|
-
margin: 0
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
.app-nav>a {
|
|
117
|
-
margin: 0 1rem;
|
|
118
|
-
padding: 5px 0
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.app-nav li,
|
|
122
|
-
.app-nav ul {
|
|
123
|
-
display: inline-block;
|
|
124
|
-
list-style: none;
|
|
125
|
-
margin: 0
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.app-nav a {
|
|
129
|
-
color: inherit;
|
|
130
|
-
font-size: 16px;
|
|
131
|
-
text-decoration: none;
|
|
132
|
-
transition: color .3s
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.app-nav a.active,
|
|
136
|
-
.app-nav a:hover {
|
|
137
|
-
color: var(--theme-color, #ea6f5a)
|
|
138
|
-
}
|
|
139
|
-
|
|
140
|
-
.app-nav a.active {
|
|
141
|
-
border-bottom: 2px solid var(--theme-color, #ea6f5a)
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
.app-nav li {
|
|
145
|
-
display: inline-block;
|
|
146
|
-
margin: 0 1rem;
|
|
147
|
-
padding: 5px 0;
|
|
148
|
-
position: relative;
|
|
149
|
-
cursor: pointer
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.app-nav li ul {
|
|
153
|
-
background-color: #fff;
|
|
154
|
-
border: 1px solid;
|
|
155
|
-
border-color: #ddd #ddd #ccc;
|
|
156
|
-
border-radius: 4px;
|
|
157
|
-
box-sizing: border-box;
|
|
158
|
-
display: none;
|
|
159
|
-
max-height: calc(100vh - 61px);
|
|
160
|
-
overflow-y: auto;
|
|
161
|
-
padding: 10px 0;
|
|
162
|
-
position: absolute;
|
|
163
|
-
right: -15px;
|
|
164
|
-
text-align: left;
|
|
165
|
-
top: 100%;
|
|
166
|
-
white-space: nowrap
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.app-nav li ul li {
|
|
170
|
-
display: block;
|
|
171
|
-
font-size: 14px;
|
|
172
|
-
line-height: 1rem;
|
|
173
|
-
margin: 8px 14px;
|
|
174
|
-
white-space: nowrap
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.app-nav li ul a {
|
|
178
|
-
display: block;
|
|
179
|
-
font-size: inherit;
|
|
180
|
-
margin: 0;
|
|
181
|
-
padding: 0
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
.app-nav li ul a.active {
|
|
185
|
-
border-bottom: 0
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.app-nav li:hover ul {
|
|
189
|
-
display: block
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.github-corner {
|
|
193
|
-
border-bottom: 0;
|
|
194
|
-
position: fixed;
|
|
195
|
-
right: 0;
|
|
196
|
-
text-decoration: none;
|
|
197
|
-
top: 0;
|
|
198
|
-
z-index: 1
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.github-corner:hover .octo-arm {
|
|
202
|
-
-webkit-animation: octocat-wave .56s ease-in-out;
|
|
203
|
-
animation: octocat-wave .56s ease-in-out
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
.github-corner svg {
|
|
207
|
-
color: #3f3f3f;
|
|
208
|
-
fill: var(--theme-color, #ea6f5a);
|
|
209
|
-
height: 80px;
|
|
210
|
-
width: 80px
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
main {
|
|
214
|
-
display: block;
|
|
215
|
-
position: relative;
|
|
216
|
-
width: 100vw;
|
|
217
|
-
height: 100%;
|
|
218
|
-
z-index: 0
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
main.hidden {
|
|
222
|
-
display: none
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
.anchor {
|
|
226
|
-
display: inline-block;
|
|
227
|
-
text-decoration: none;
|
|
228
|
-
transition: all .3s
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.anchor span {
|
|
232
|
-
color: #c8c8c8
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.anchor:hover {
|
|
236
|
-
text-decoration: underline
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.sidebar {
|
|
240
|
-
border-right: 1px solid rgba(0, 0, 0, .07);
|
|
241
|
-
overflow-y: auto;
|
|
242
|
-
padding: 40px 0 0;
|
|
243
|
-
position: absolute;
|
|
244
|
-
top: 0;
|
|
245
|
-
bottom: 0;
|
|
246
|
-
left: 0;
|
|
247
|
-
transition: transform .25s ease-out;
|
|
248
|
-
width: 300px;
|
|
249
|
-
z-index: 20
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.sidebar>h1 {
|
|
253
|
-
margin: 0 auto 1rem;
|
|
254
|
-
font-size: 1.5rem;
|
|
255
|
-
font-weight: 300;
|
|
256
|
-
text-align: center
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
.sidebar>h1 a {
|
|
260
|
-
color: inherit;
|
|
261
|
-
text-decoration: none
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
.sidebar>h1 .app-nav {
|
|
265
|
-
display: block;
|
|
266
|
-
position: static
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
.sidebar .sidebar-nav {
|
|
270
|
-
line-height: 2em;
|
|
271
|
-
padding-bottom: 40px
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
.sidebar li.collapse .app-sub-sidebar {
|
|
275
|
-
display: none
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
.sidebar ul {
|
|
279
|
-
margin: 0 0 0 15px;
|
|
280
|
-
padding: 0
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.sidebar li>p {
|
|
284
|
-
font-weight: 700;
|
|
285
|
-
margin: 0
|
|
286
|
-
}
|
|
287
|
-
|
|
288
|
-
.sidebar ul,
|
|
289
|
-
.sidebar ul li {
|
|
290
|
-
list-style: none
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
.sidebar ul li a {
|
|
294
|
-
border-bottom: none;
|
|
295
|
-
display: block
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.sidebar ul li ul {
|
|
299
|
-
padding-left: 20px
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
.sidebar::-webkit-scrollbar {
|
|
303
|
-
width: 4px
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
.sidebar::-webkit-scrollbar-thumb {
|
|
307
|
-
background: transparent;
|
|
308
|
-
border-radius: 4px
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
.sidebar:hover::-webkit-scrollbar-thumb {
|
|
312
|
-
background: hsla(0, 0%, 53.3%, .4)
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
.sidebar:hover::-webkit-scrollbar-track {
|
|
316
|
-
background: hsla(0, 0%, 53.3%, .1)
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
.sidebar-toggle {
|
|
320
|
-
background-color: transparent;
|
|
321
|
-
background-color: rgba(63, 63, 63, .8);
|
|
322
|
-
border: 0;
|
|
323
|
-
outline: none;
|
|
324
|
-
padding: 10px;
|
|
325
|
-
position: absolute;
|
|
326
|
-
bottom: 0;
|
|
327
|
-
left: 0;
|
|
328
|
-
text-align: center;
|
|
329
|
-
transition: opacity .3s;
|
|
330
|
-
width: 284px;
|
|
331
|
-
z-index: 30;
|
|
332
|
-
cursor: pointer
|
|
333
|
-
}
|
|
334
|
-
|
|
335
|
-
.sidebar-toggle:hover .sidebar-toggle-button {
|
|
336
|
-
opacity: .4
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
.sidebar-toggle span {
|
|
340
|
-
background-color: var(--theme-color, #ea6f5a);
|
|
341
|
-
display: block;
|
|
342
|
-
margin-bottom: 4px;
|
|
343
|
-
width: 16px;
|
|
344
|
-
height: 2px
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
body.sticky .sidebar,
|
|
348
|
-
body.sticky .sidebar-toggle {
|
|
349
|
-
position: fixed
|
|
350
|
-
}
|
|
351
|
-
|
|
352
|
-
.content {
|
|
353
|
-
padding-top: 60px;
|
|
354
|
-
position: absolute;
|
|
355
|
-
top: 0;
|
|
356
|
-
right: 0;
|
|
357
|
-
bottom: 0;
|
|
358
|
-
left: 300px;
|
|
359
|
-
transition: left .25s ease
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.markdown-section {
|
|
363
|
-
margin: 0 auto;
|
|
364
|
-
/* max-width: 80%; */
|
|
365
|
-
padding: 30px 15px 40px;
|
|
366
|
-
position: relative
|
|
367
|
-
}
|
|
368
|
-
|
|
369
|
-
.markdown-section>* {
|
|
370
|
-
box-sizing: border-box;
|
|
371
|
-
font-size: inherit
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
.markdown-section>:first-child {
|
|
375
|
-
margin-top: 0!important
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
.markdown-section hr {
|
|
379
|
-
border: none;
|
|
380
|
-
border-bottom: 1px solid #eee;
|
|
381
|
-
margin: 2em 0
|
|
382
|
-
}
|
|
383
|
-
|
|
384
|
-
.markdown-section iframe {
|
|
385
|
-
border: 1px solid #eee;
|
|
386
|
-
width: 1px;
|
|
387
|
-
min-width: 100%
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.markdown-section table {
|
|
391
|
-
border-collapse: collapse;
|
|
392
|
-
border-spacing: 0;
|
|
393
|
-
display: block;
|
|
394
|
-
margin-bottom: 1rem;
|
|
395
|
-
overflow: auto;
|
|
396
|
-
width: 100%
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.markdown-section th {
|
|
400
|
-
font-weight: 700
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
.markdown-section td,
|
|
404
|
-
.markdown-section th {
|
|
405
|
-
border: 1px solid #ddd;
|
|
406
|
-
padding: 6px 13px
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
.markdown-section tr {
|
|
410
|
-
border-top: 1px solid #ccc
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
.markdown-section p.tip,
|
|
414
|
-
.markdown-section tr:nth-child(2n) {
|
|
415
|
-
background-color: #f8f8f8
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
.markdown-section p.tip {
|
|
419
|
-
border-bottom-right-radius: 2px;
|
|
420
|
-
border-left: 4px solid #f66;
|
|
421
|
-
border-top-right-radius: 2px;
|
|
422
|
-
margin: 2em 0;
|
|
423
|
-
padding: 12px 24px 12px 30px;
|
|
424
|
-
position: relative
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
.markdown-section p.tip:before {
|
|
428
|
-
background-color: #f66;
|
|
429
|
-
border-radius: 100%;
|
|
430
|
-
color: #3f3f3f;
|
|
431
|
-
content: "!";
|
|
432
|
-
font-family: Dosis, Source Sans Pro, Helvetica Neue, Arial, sans-serif;
|
|
433
|
-
font-size: 14px;
|
|
434
|
-
font-weight: 700;
|
|
435
|
-
left: -12px;
|
|
436
|
-
line-height: 20px;
|
|
437
|
-
position: absolute;
|
|
438
|
-
height: 20px;
|
|
439
|
-
width: 20px;
|
|
440
|
-
text-align: center;
|
|
441
|
-
top: 14px
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.markdown-section p.tip code {
|
|
445
|
-
background-color: #efefef
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.markdown-section p.tip em {
|
|
449
|
-
color: #c8c8c8
|
|
450
|
-
}
|
|
451
|
-
|
|
452
|
-
.markdown-section p.warn {
|
|
453
|
-
background: rgba(234, 111, 90, .1);
|
|
454
|
-
border-radius: 2px;
|
|
455
|
-
padding: 1rem
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
.markdown-section ul.task-list>li {
|
|
459
|
-
list-style-type: none
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
body.close .sidebar {
|
|
463
|
-
transform: translateX(-300px)
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
body.close .sidebar-toggle {
|
|
467
|
-
width: auto
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
body.close .content {
|
|
471
|
-
left: 0
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
@media print {
|
|
475
|
-
.app-nav,
|
|
476
|
-
.github-corner,
|
|
477
|
-
.sidebar,
|
|
478
|
-
.sidebar-toggle {
|
|
479
|
-
display: none
|
|
480
|
-
}
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
@media screen and (max-width:768px) {
|
|
484
|
-
.github-corner,
|
|
485
|
-
.sidebar,
|
|
486
|
-
.sidebar-toggle {
|
|
487
|
-
position: fixed
|
|
488
|
-
}
|
|
489
|
-
.app-nav {
|
|
490
|
-
margin-top: 16px
|
|
491
|
-
}
|
|
492
|
-
.app-nav li ul {
|
|
493
|
-
top: 30px
|
|
494
|
-
}
|
|
495
|
-
main {
|
|
496
|
-
height: auto;
|
|
497
|
-
overflow-x: hidden
|
|
498
|
-
}
|
|
499
|
-
.sidebar {
|
|
500
|
-
left: -300px;
|
|
501
|
-
transition: transform .25s ease-out
|
|
502
|
-
}
|
|
503
|
-
.content {
|
|
504
|
-
left: 0;
|
|
505
|
-
max-width: 100vw;
|
|
506
|
-
position: static;
|
|
507
|
-
padding-top: 20px;
|
|
508
|
-
transition: transform .25s ease
|
|
509
|
-
}
|
|
510
|
-
.app-nav,
|
|
511
|
-
.github-corner {
|
|
512
|
-
transition: transform .25s ease-out
|
|
513
|
-
}
|
|
514
|
-
.sidebar-toggle {
|
|
515
|
-
background-color: transparent;
|
|
516
|
-
width: auto;
|
|
517
|
-
padding: 30px 30px 10px 10px
|
|
518
|
-
}
|
|
519
|
-
body.close .sidebar {
|
|
520
|
-
transform: translateX(300px)
|
|
521
|
-
}
|
|
522
|
-
body.close .sidebar-toggle {
|
|
523
|
-
background-color: rgba(63, 63, 63, .8);
|
|
524
|
-
transition: background-color 1s;
|
|
525
|
-
width: 284px;
|
|
526
|
-
padding: 10px
|
|
527
|
-
}
|
|
528
|
-
body.close .content {
|
|
529
|
-
transform: translateX(300px)
|
|
530
|
-
}
|
|
531
|
-
body.close .app-nav,
|
|
532
|
-
body.close .github-corner {
|
|
533
|
-
display: none
|
|
534
|
-
}
|
|
535
|
-
.github-corner:hover .octo-arm {
|
|
536
|
-
-webkit-animation: none;
|
|
537
|
-
animation: none
|
|
538
|
-
}
|
|
539
|
-
.github-corner .octo-arm {
|
|
540
|
-
-webkit-animation: octocat-wave .56s ease-in-out;
|
|
541
|
-
animation: octocat-wave .56s ease-in-out
|
|
542
|
-
}
|
|
543
|
-
}
|
|
544
|
-
|
|
545
|
-
@-webkit-keyframes octocat-wave {
|
|
546
|
-
0%,
|
|
547
|
-
to {
|
|
548
|
-
transform: rotate(0)
|
|
549
|
-
}
|
|
550
|
-
20%,
|
|
551
|
-
60% {
|
|
552
|
-
transform: rotate(-25deg)
|
|
553
|
-
}
|
|
554
|
-
40%,
|
|
555
|
-
80% {
|
|
556
|
-
transform: rotate(10deg)
|
|
557
|
-
}
|
|
558
|
-
}
|
|
559
|
-
|
|
560
|
-
@keyframes octocat-wave {
|
|
561
|
-
0%,
|
|
562
|
-
to {
|
|
563
|
-
transform: rotate(0)
|
|
564
|
-
}
|
|
565
|
-
20%,
|
|
566
|
-
60% {
|
|
567
|
-
transform: rotate(-25deg)
|
|
568
|
-
}
|
|
569
|
-
40%,
|
|
570
|
-
80% {
|
|
571
|
-
transform: rotate(10deg)
|
|
572
|
-
}
|
|
573
|
-
}
|
|
574
|
-
|
|
575
|
-
section.cover {
|
|
576
|
-
align-items: center;
|
|
577
|
-
background-position: 50%;
|
|
578
|
-
background-repeat: no-repeat;
|
|
579
|
-
background-size: cover;
|
|
580
|
-
height: 100vh;
|
|
581
|
-
width: 100vw;
|
|
582
|
-
display: none
|
|
583
|
-
}
|
|
584
|
-
|
|
585
|
-
section.cover.show {
|
|
586
|
-
display: flex
|
|
587
|
-
}
|
|
588
|
-
|
|
589
|
-
section.cover.has-mask .mask {
|
|
590
|
-
background-color: #3f3f3f;
|
|
591
|
-
opacity: .8;
|
|
592
|
-
position: absolute;
|
|
593
|
-
top: 0;
|
|
594
|
-
height: 100%;
|
|
595
|
-
width: 100%
|
|
596
|
-
}
|
|
597
|
-
|
|
598
|
-
section.cover .cover-main {
|
|
599
|
-
flex: 1;
|
|
600
|
-
margin: -20px 16px 0;
|
|
601
|
-
text-align: center;
|
|
602
|
-
position: relative
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
section.cover a {
|
|
606
|
-
color: inherit
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
section.cover a,
|
|
610
|
-
section.cover a:hover {
|
|
611
|
-
text-decoration: none
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
section.cover p {
|
|
615
|
-
line-height: 1.5rem;
|
|
616
|
-
margin: 1em 0
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
section.cover h1 {
|
|
620
|
-
color: inherit;
|
|
621
|
-
font-size: 2.5rem;
|
|
622
|
-
font-weight: 300;
|
|
623
|
-
margin: .625rem 0 2.5rem;
|
|
624
|
-
position: relative;
|
|
625
|
-
text-align: center
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
section.cover h1 a {
|
|
629
|
-
display: block
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
section.cover h1 small {
|
|
633
|
-
bottom: -.4375rem;
|
|
634
|
-
font-size: 1rem;
|
|
635
|
-
position: absolute
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
section.cover blockquote {
|
|
639
|
-
font-size: 1.5rem;
|
|
640
|
-
text-align: center
|
|
641
|
-
}
|
|
642
|
-
|
|
643
|
-
section.cover ul {
|
|
644
|
-
line-height: 1.8;
|
|
645
|
-
list-style-type: none;
|
|
646
|
-
margin: 1em auto;
|
|
647
|
-
max-width: 500px;
|
|
648
|
-
padding: 0
|
|
649
|
-
}
|
|
650
|
-
|
|
651
|
-
section.cover .cover-main>p:last-child a {
|
|
652
|
-
border-radius: 2rem;
|
|
653
|
-
border: 1px solid var(--theme-color, #ea6f5a);
|
|
654
|
-
box-sizing: border-box;
|
|
655
|
-
color: var(--theme-color, #ea6f5a);
|
|
656
|
-
display: inline-block;
|
|
657
|
-
font-size: 1.05rem;
|
|
658
|
-
letter-spacing: .1rem;
|
|
659
|
-
margin: .5rem 1rem;
|
|
660
|
-
padding: .75em 2rem;
|
|
661
|
-
text-decoration: none;
|
|
662
|
-
transition: all .15s ease
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
section.cover .cover-main>p:last-child a:last-child {
|
|
666
|
-
background-color: var(--theme-color, #ea6f5a);
|
|
667
|
-
color: #fff
|
|
668
|
-
}
|
|
669
|
-
|
|
670
|
-
section.cover .cover-main>p:last-child a:last-child:hover {
|
|
671
|
-
color: inherit;
|
|
672
|
-
opacity: .8
|
|
673
|
-
}
|
|
674
|
-
|
|
675
|
-
section.cover .cover-main>p:last-child a:hover {
|
|
676
|
-
color: inherit
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
section.cover blockquote>p>a {
|
|
680
|
-
border-bottom: 2px solid var(--theme-color, #ea6f5a);
|
|
681
|
-
transition: color .3s
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
section.cover blockquote>p>a:hover {
|
|
685
|
-
color: var(--theme-color, #ea6f5a)
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.sidebar,
|
|
689
|
-
body {
|
|
690
|
-
background-color: #3f3f3f
|
|
691
|
-
}
|
|
692
|
-
|
|
693
|
-
.sidebar {
|
|
694
|
-
color: #c8c8c8
|
|
695
|
-
}
|
|
696
|
-
|
|
697
|
-
.sidebar li {
|
|
698
|
-
margin: 6px 15px 6px 0
|
|
699
|
-
}
|
|
700
|
-
|
|
701
|
-
.sidebar ul li a {
|
|
702
|
-
color: #c8c8c8;
|
|
703
|
-
font-size: 14px;
|
|
704
|
-
overflow: hidden;
|
|
705
|
-
text-decoration: none;
|
|
706
|
-
text-overflow: ellipsis;
|
|
707
|
-
white-space: nowrap
|
|
708
|
-
}
|
|
709
|
-
|
|
710
|
-
.sidebar ul li a:hover {
|
|
711
|
-
text-decoration: underline
|
|
712
|
-
}
|
|
713
|
-
|
|
714
|
-
.sidebar ul li ul {
|
|
715
|
-
padding: 0
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
.sidebar ul li.active>a {
|
|
719
|
-
color: var(--theme-color, #ea6f5a);
|
|
720
|
-
font-weight: 600
|
|
721
|
-
}
|
|
722
|
-
|
|
723
|
-
.markdown-section h1,
|
|
724
|
-
.markdown-section h2,
|
|
725
|
-
.markdown-section h3,
|
|
726
|
-
.markdown-section h4,
|
|
727
|
-
.markdown-section strong {
|
|
728
|
-
color: #657b83;
|
|
729
|
-
font-weight: 600
|
|
730
|
-
}
|
|
731
|
-
|
|
732
|
-
.markdown-section a {
|
|
733
|
-
color: var(--theme-color, #ea6f5a);
|
|
734
|
-
font-weight: 600
|
|
735
|
-
}
|
|
736
|
-
|
|
737
|
-
.markdown-section h1 {
|
|
738
|
-
font-size: 2rem;
|
|
739
|
-
margin: 0 0 1rem
|
|
740
|
-
}
|
|
741
|
-
|
|
742
|
-
.markdown-section h2 {
|
|
743
|
-
font-size: 1.75rem;
|
|
744
|
-
margin: 45px 0 .8rem
|
|
745
|
-
}
|
|
746
|
-
|
|
747
|
-
.markdown-section h3 {
|
|
748
|
-
font-size: 1.5rem;
|
|
749
|
-
margin: 40px 0 .6rem
|
|
750
|
-
}
|
|
751
|
-
|
|
752
|
-
.markdown-section h4 {
|
|
753
|
-
font-size: 1.25rem
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.markdown-section h5 {
|
|
757
|
-
font-size: 1rem
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.markdown-section h6 {
|
|
761
|
-
color: #777;
|
|
762
|
-
font-size: 1rem
|
|
763
|
-
}
|
|
764
|
-
|
|
765
|
-
.markdown-section figure,
|
|
766
|
-
.markdown-section ol,
|
|
767
|
-
.markdown-section p,
|
|
768
|
-
.markdown-section ul {
|
|
769
|
-
margin: 1.2em 0
|
|
770
|
-
}
|
|
771
|
-
|
|
772
|
-
.markdown-section ol,
|
|
773
|
-
.markdown-section p,
|
|
774
|
-
.markdown-section ul {
|
|
775
|
-
line-height: 1.6rem;
|
|
776
|
-
word-spacing: .05rem
|
|
777
|
-
}
|
|
778
|
-
|
|
779
|
-
.markdown-section ol,
|
|
780
|
-
.markdown-section ul {
|
|
781
|
-
padding-left: 1.5rem
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.markdown-section blockquote {
|
|
785
|
-
border-left: 4px solid var(--theme-color, #ea6f5a);
|
|
786
|
-
color: #858585;
|
|
787
|
-
margin: 2em 0;
|
|
788
|
-
padding-left: 20px
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
.markdown-section blockquote p {
|
|
792
|
-
font-weight: 600;
|
|
793
|
-
margin-left: 0
|
|
794
|
-
}
|
|
795
|
-
|
|
796
|
-
.markdown-section iframe {
|
|
797
|
-
margin: 1em 0
|
|
798
|
-
}
|
|
799
|
-
|
|
800
|
-
.markdown-section em {
|
|
801
|
-
color: #7f8c8d
|
|
802
|
-
}
|
|
803
|
-
|
|
804
|
-
.markdown-section code {
|
|
805
|
-
background-color: #282828;
|
|
806
|
-
border-radius: 2px;
|
|
807
|
-
color: #657b83;
|
|
808
|
-
font-family: Roboto Mono, Monaco, courier, monospace;
|
|
809
|
-
margin: 0 2px;
|
|
810
|
-
padding: 3px 5px;
|
|
811
|
-
white-space: pre-wrap
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.markdown-section>:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) code {
|
|
815
|
-
font-size: .8rem
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.markdown-section pre {
|
|
819
|
-
-moz-osx-font-smoothing: initial;
|
|
820
|
-
-webkit-font-smoothing: initial;
|
|
821
|
-
background-color: #282828;
|
|
822
|
-
font-family: Roboto Mono, Monaco, courier, monospace;
|
|
823
|
-
line-height: 1.5rem;
|
|
824
|
-
margin: 1.2em 0;
|
|
825
|
-
overflow: auto;
|
|
826
|
-
padding: 0 1.4rem;
|
|
827
|
-
position: relative;
|
|
828
|
-
word-wrap: normal
|
|
829
|
-
}
|
|
830
|
-
|
|
831
|
-
.token.cdata,
|
|
832
|
-
.token.comment,
|
|
833
|
-
.token.doctype,
|
|
834
|
-
.token.prolog {
|
|
835
|
-
color: #8e908c
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
.token.namespace {
|
|
839
|
-
opacity: .7
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
.token.boolean,
|
|
843
|
-
.token.number {
|
|
844
|
-
color: #c76b29
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.token.punctuation {
|
|
848
|
-
color: #525252
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.token.property {
|
|
852
|
-
color: #c08b30
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.token.tag {
|
|
856
|
-
color: #2973b7
|
|
857
|
-
}
|
|
858
|
-
|
|
859
|
-
.token.string {
|
|
860
|
-
color: var(--theme-color, #ea6f5a)
|
|
861
|
-
}
|
|
862
|
-
|
|
863
|
-
.token.selector {
|
|
864
|
-
color: #6679cc
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
.token.attr-name {
|
|
868
|
-
color: #2973b7
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
.language-css .token.string,
|
|
872
|
-
.style .token.string,
|
|
873
|
-
.token.entity,
|
|
874
|
-
.token.url {
|
|
875
|
-
color: #22a2c9
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
.token.attr-value,
|
|
879
|
-
.token.control,
|
|
880
|
-
.token.directive,
|
|
881
|
-
.token.unit {
|
|
882
|
-
color: var(--theme-color, #ea6f5a)
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
.token.keyword {
|
|
886
|
-
color: #e96900
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.token.atrule,
|
|
890
|
-
.token.regex,
|
|
891
|
-
.token.statement {
|
|
892
|
-
color: #22a2c9
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.token.placeholder,
|
|
896
|
-
.token.variable {
|
|
897
|
-
color: #3d8fd1
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
.token.deleted {
|
|
901
|
-
text-decoration: line-through
|
|
902
|
-
}
|
|
903
|
-
|
|
904
|
-
.token.inserted {
|
|
905
|
-
border-bottom: 1px dotted #202746;
|
|
906
|
-
text-decoration: none
|
|
907
|
-
}
|
|
908
|
-
|
|
909
|
-
.token.italic {
|
|
910
|
-
font-style: italic
|
|
911
|
-
}
|
|
912
|
-
|
|
913
|
-
.token.bold,
|
|
914
|
-
.token.important {
|
|
915
|
-
font-weight: 700
|
|
916
|
-
}
|
|
917
|
-
|
|
918
|
-
.token.important {
|
|
919
|
-
color: #c94922
|
|
920
|
-
}
|
|
921
|
-
|
|
922
|
-
.token.entity {
|
|
923
|
-
cursor: help
|
|
924
|
-
}
|
|
925
|
-
|
|
926
|
-
.markdown-section pre>code {
|
|
927
|
-
-moz-osx-font-smoothing: initial;
|
|
928
|
-
-webkit-font-smoothing: initial;
|
|
929
|
-
background-color: #282828;
|
|
930
|
-
border-radius: 2px;
|
|
931
|
-
color: #657b83;
|
|
932
|
-
display: block;
|
|
933
|
-
font-family: Roboto Mono, Monaco, courier, monospace;
|
|
934
|
-
font-size: .8rem;
|
|
935
|
-
line-height: inherit;
|
|
936
|
-
margin: 0 2px;
|
|
937
|
-
max-width: inherit;
|
|
938
|
-
overflow: inherit;
|
|
939
|
-
padding: 2.2em 5px;
|
|
940
|
-
white-space: inherit
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
.markdown-section code:after,
|
|
944
|
-
.markdown-section code:before {
|
|
945
|
-
letter-spacing: .05rem
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
code .token {
|
|
949
|
-
-moz-osx-font-smoothing: initial;
|
|
950
|
-
-webkit-font-smoothing: initial;
|
|
951
|
-
min-height: 1.5rem;
|
|
952
|
-
position: relative;
|
|
953
|
-
left: auto
|
|
954
|
-
}
|
|
955
|
-
|
|
956
|
-
pre:after {
|
|
957
|
-
color: #ccc;
|
|
958
|
-
content: attr(data-lang);
|
|
959
|
-
font-size: .6rem;
|
|
960
|
-
font-weight: 600;
|
|
961
|
-
height: 15px;
|
|
962
|
-
line-height: 15px;
|
|
963
|
-
padding: 5px 10px 0;
|
|
964
|
-
position: absolute;
|
|
965
|
-
right: 0;
|
|
966
|
-
text-align: right;
|
|
967
|
-
top: 0
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
.markdown-section p.tip {
|
|
971
|
-
background-color: #282828;
|
|
972
|
-
color: #657b83
|
|
973
|
-
}
|
|
974
|
-
|
|
975
|
-
input[type=search] {
|
|
976
|
-
background: #4f4f4f;
|
|
977
|
-
border-color: #4f4f4f;
|
|
978
|
-
color: #c8c8c8
|
|
979
|
-
}
|