mhc-project-doc 1.0.0
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +23 -0
- data/_includes/aside.html +13 -0
- data/_includes/footer.html +13 -0
- data/_includes/header.html +5 -0
- data/_includes/nav.html +5 -0
- data/_layouts/page.html +33 -0
- data/assets/css/aside.css +57 -0
- data/assets/css/config.css +28 -0
- data/assets/css/font-awesome/css/font-awesome.min.css +4 -0
- data/assets/css/font-awesome/fonts/FontAwesome.otf +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.eot +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.woff +0 -0
- data/assets/css/font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/css/footer.css +18 -0
- data/assets/css/header.css +40 -0
- data/assets/css/nav.css +3 -0
- data/assets/css/normalize.css +447 -0
- data/assets/css/page.css +17 -0
- data/assets/css/prism/prism.css +581 -0
- data/assets/css/reset.css +47 -0
- data/assets/css/responsive.css +70 -0
- data/assets/css/stilize/font/Roboto-Black.ttf +0 -0
- data/assets/css/stilize/font/Roboto-BlackItalic.ttf +0 -0
- data/assets/css/stilize/font/Roboto-Bold.ttf +0 -0
- data/assets/css/stilize/font/Roboto-BoldItalic.ttf +0 -0
- data/assets/css/stilize/font/Roboto-Italic.ttf +0 -0
- data/assets/css/stilize/font/Roboto-Light.ttf +0 -0
- data/assets/css/stilize/font/Roboto-LightItalic.ttf +0 -0
- data/assets/css/stilize/font/Roboto-Medium.ttf +0 -0
- data/assets/css/stilize/font/Roboto-MediumItalic.ttf +0 -0
- data/assets/css/stilize/font/Roboto-Regular.ttf +0 -0
- data/assets/css/stilize/font/Roboto-Thin.ttf +0 -0
- data/assets/css/stilize/font/Roboto-ThinItalic.ttf +0 -0
- data/assets/css/stilize/icons/stilize/stilize.eot +0 -0
- data/assets/css/stilize/icons/stilize/stilize.svg +1146 -0
- data/assets/css/stilize/icons/stilize/stilize.ttf +0 -0
- data/assets/css/stilize/icons/stilize/stilize.woff +0 -0
- data/assets/css/stilize/icons/stilize/stilize.woff2 +0 -0
- data/assets/css/stilize/stilize.min.css +1 -0
- data/assets/js/prism/prism.js +52 -0
- data/assets/js/responsive.js +38 -0
- data/assets/js/stilize/stilize.min.js +640 -0
- metadata +131 -0
data/assets/css/page.css
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
.o-content {
|
2
|
+
grid-area: main;
|
3
|
+
min-height: calc(100vh - (var(--headerHeight) + var(--footerHeight)));
|
4
|
+
padding: var(--padding);
|
5
|
+
}
|
6
|
+
.o-content ul {
|
7
|
+
margin: 1rem 2rem;
|
8
|
+
}
|
9
|
+
|
10
|
+
.l-menuBackground {
|
11
|
+
background: rgba(0, 0, 0, .5);
|
12
|
+
height: 100%;
|
13
|
+
left: 0;
|
14
|
+
position: fixed;
|
15
|
+
top: 0;
|
16
|
+
width: 100%;
|
17
|
+
}
|
@@ -0,0 +1,581 @@
|
|
1
|
+
/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript+apacheconf+aspnet+bash+c+csharp+cpp+ruby+docker+git+http+java+json+makefile+markdown+nginx+pascal+php+powershell+properties+python+jsx+sass+scss+scala+sql+typescript+vim&plugins=line-highlight+line-numbers+autolinker+wpd+file-highlight+toolbar+jsonp-highlight+previewer-base+previewer-color+previewer-gradient+previewer-easing+previewer-time+previewer-angle+autoloader+unescaped-markup+command-line+normalize-whitespace+show-language+copy-to-clipboard */
|
2
|
+
/**
|
3
|
+
* prism.js default theme for JavaScript, CSS and HTML
|
4
|
+
* Based on dabblet (http://dabblet.com)
|
5
|
+
* @author Lea Verou
|
6
|
+
*/
|
7
|
+
|
8
|
+
code[class*="language-"],
|
9
|
+
pre[class*="language-"] {
|
10
|
+
color: black;
|
11
|
+
background: none;
|
12
|
+
text-shadow: 0 1px white;
|
13
|
+
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
14
|
+
text-align: left;
|
15
|
+
white-space: pre;
|
16
|
+
word-spacing: normal;
|
17
|
+
word-break: normal;
|
18
|
+
word-wrap: normal;
|
19
|
+
line-height: 1.5;
|
20
|
+
|
21
|
+
-moz-tab-size: 4;
|
22
|
+
-o-tab-size: 4;
|
23
|
+
tab-size: 4;
|
24
|
+
|
25
|
+
-webkit-hyphens: none;
|
26
|
+
-moz-hyphens: none;
|
27
|
+
-ms-hyphens: none;
|
28
|
+
hyphens: none;
|
29
|
+
}
|
30
|
+
|
31
|
+
pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection,
|
32
|
+
code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection {
|
33
|
+
text-shadow: none;
|
34
|
+
background: #b3d4fc;
|
35
|
+
}
|
36
|
+
|
37
|
+
pre[class*="language-"]::selection, pre[class*="language-"] ::selection,
|
38
|
+
code[class*="language-"]::selection, code[class*="language-"] ::selection {
|
39
|
+
text-shadow: none;
|
40
|
+
background: #b3d4fc;
|
41
|
+
}
|
42
|
+
|
43
|
+
@media print {
|
44
|
+
code[class*="language-"],
|
45
|
+
pre[class*="language-"] {
|
46
|
+
text-shadow: none;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
/* Code blocks */
|
51
|
+
pre[class*="language-"] {
|
52
|
+
padding: 1em;
|
53
|
+
margin: .5em 0;
|
54
|
+
overflow: auto;
|
55
|
+
}
|
56
|
+
|
57
|
+
:not(pre) > code[class*="language-"],
|
58
|
+
pre[class*="language-"] {
|
59
|
+
background: #f5f2f0;
|
60
|
+
}
|
61
|
+
|
62
|
+
/* Inline code */
|
63
|
+
:not(pre) > code[class*="language-"] {
|
64
|
+
padding: .1em;
|
65
|
+
border-radius: .3em;
|
66
|
+
white-space: normal;
|
67
|
+
}
|
68
|
+
|
69
|
+
.token.comment,
|
70
|
+
.token.prolog,
|
71
|
+
.token.doctype,
|
72
|
+
.token.cdata {
|
73
|
+
color: slategray;
|
74
|
+
}
|
75
|
+
|
76
|
+
.token.punctuation {
|
77
|
+
color: #999;
|
78
|
+
}
|
79
|
+
|
80
|
+
.namespace {
|
81
|
+
opacity: .7;
|
82
|
+
}
|
83
|
+
|
84
|
+
.token.property,
|
85
|
+
.token.tag,
|
86
|
+
.token.boolean,
|
87
|
+
.token.number,
|
88
|
+
.token.constant,
|
89
|
+
.token.symbol,
|
90
|
+
.token.deleted {
|
91
|
+
color: #905;
|
92
|
+
}
|
93
|
+
|
94
|
+
.token.selector,
|
95
|
+
.token.attr-name,
|
96
|
+
.token.string,
|
97
|
+
.token.char,
|
98
|
+
.token.builtin,
|
99
|
+
.token.inserted {
|
100
|
+
color: #690;
|
101
|
+
}
|
102
|
+
|
103
|
+
.token.operator,
|
104
|
+
.token.entity,
|
105
|
+
.token.url,
|
106
|
+
.language-css .token.string,
|
107
|
+
.style .token.string {
|
108
|
+
color: #a67f59;
|
109
|
+
background: hsla(0, 0%, 100%, .5);
|
110
|
+
}
|
111
|
+
|
112
|
+
.token.atrule,
|
113
|
+
.token.attr-value,
|
114
|
+
.token.keyword {
|
115
|
+
color: #07a;
|
116
|
+
}
|
117
|
+
|
118
|
+
.token.function {
|
119
|
+
color: #DD4A68;
|
120
|
+
}
|
121
|
+
|
122
|
+
.token.regex,
|
123
|
+
.token.important,
|
124
|
+
.token.variable {
|
125
|
+
color: #e90;
|
126
|
+
}
|
127
|
+
|
128
|
+
.token.important,
|
129
|
+
.token.bold {
|
130
|
+
font-weight: bold;
|
131
|
+
}
|
132
|
+
.token.italic {
|
133
|
+
font-style: italic;
|
134
|
+
}
|
135
|
+
|
136
|
+
.token.entity {
|
137
|
+
cursor: help;
|
138
|
+
}
|
139
|
+
|
140
|
+
pre[data-line] {
|
141
|
+
position: relative;
|
142
|
+
padding: 1em 0 1em 3em;
|
143
|
+
}
|
144
|
+
|
145
|
+
.line-highlight {
|
146
|
+
position: absolute;
|
147
|
+
left: 0;
|
148
|
+
right: 0;
|
149
|
+
padding: inherit 0;
|
150
|
+
margin-top: 1em; /* Same as .prism’s padding-top */
|
151
|
+
|
152
|
+
background: hsla(24, 20%, 50%,.08);
|
153
|
+
background: linear-gradient(to right, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0));
|
154
|
+
|
155
|
+
pointer-events: none;
|
156
|
+
|
157
|
+
line-height: inherit;
|
158
|
+
white-space: pre;
|
159
|
+
}
|
160
|
+
|
161
|
+
.line-highlight:before,
|
162
|
+
.line-highlight[data-end]:after {
|
163
|
+
content: attr(data-start);
|
164
|
+
position: absolute;
|
165
|
+
top: .4em;
|
166
|
+
left: .6em;
|
167
|
+
min-width: 1em;
|
168
|
+
padding: 0 .5em;
|
169
|
+
background-color: hsla(24, 20%, 50%,.4);
|
170
|
+
color: hsl(24, 20%, 95%);
|
171
|
+
font: bold 65%/1.5 sans-serif;
|
172
|
+
text-align: center;
|
173
|
+
vertical-align: .3em;
|
174
|
+
border-radius: 999px;
|
175
|
+
text-shadow: none;
|
176
|
+
box-shadow: 0 1px white;
|
177
|
+
}
|
178
|
+
|
179
|
+
.line-highlight[data-end]:after {
|
180
|
+
content: attr(data-end);
|
181
|
+
top: auto;
|
182
|
+
bottom: .4em;
|
183
|
+
}
|
184
|
+
|
185
|
+
pre.line-numbers {
|
186
|
+
position: relative;
|
187
|
+
padding-left: 3.8em;
|
188
|
+
counter-reset: linenumber;
|
189
|
+
}
|
190
|
+
|
191
|
+
pre.line-numbers > code {
|
192
|
+
position: relative;
|
193
|
+
}
|
194
|
+
|
195
|
+
.line-numbers .line-numbers-rows {
|
196
|
+
position: absolute;
|
197
|
+
pointer-events: none;
|
198
|
+
top: 0;
|
199
|
+
font-size: 100%;
|
200
|
+
left: -3.8em;
|
201
|
+
width: 3em; /* works for line-numbers below 1000 lines */
|
202
|
+
letter-spacing: -1px;
|
203
|
+
border-right: 1px solid #999;
|
204
|
+
|
205
|
+
-webkit-user-select: none;
|
206
|
+
-moz-user-select: none;
|
207
|
+
-ms-user-select: none;
|
208
|
+
user-select: none;
|
209
|
+
|
210
|
+
}
|
211
|
+
|
212
|
+
.line-numbers-rows > span {
|
213
|
+
pointer-events: none;
|
214
|
+
display: block;
|
215
|
+
counter-increment: linenumber;
|
216
|
+
}
|
217
|
+
|
218
|
+
.line-numbers-rows > span:before {
|
219
|
+
content: counter(linenumber);
|
220
|
+
color: #999;
|
221
|
+
display: block;
|
222
|
+
padding-right: 0.8em;
|
223
|
+
text-align: right;
|
224
|
+
}
|
225
|
+
.token a {
|
226
|
+
color: inherit;
|
227
|
+
}
|
228
|
+
code[class*="language-"] a[href],
|
229
|
+
pre[class*="language-"] a[href] {
|
230
|
+
cursor: help;
|
231
|
+
text-decoration: none;
|
232
|
+
}
|
233
|
+
|
234
|
+
code[class*="language-"] a[href]:hover,
|
235
|
+
pre[class*="language-"] a[href]:hover {
|
236
|
+
cursor: help;
|
237
|
+
text-decoration: underline;
|
238
|
+
}
|
239
|
+
pre.code-toolbar {
|
240
|
+
position: relative;
|
241
|
+
}
|
242
|
+
|
243
|
+
pre.code-toolbar > .toolbar {
|
244
|
+
position: absolute;
|
245
|
+
top: .3em;
|
246
|
+
right: .2em;
|
247
|
+
transition: opacity 0.3s ease-in-out;
|
248
|
+
opacity: 0;
|
249
|
+
}
|
250
|
+
|
251
|
+
pre.code-toolbar:hover > .toolbar {
|
252
|
+
opacity: 1;
|
253
|
+
}
|
254
|
+
|
255
|
+
pre.code-toolbar > .toolbar .toolbar-item {
|
256
|
+
display: inline-block;
|
257
|
+
}
|
258
|
+
|
259
|
+
pre.code-toolbar > .toolbar a {
|
260
|
+
cursor: pointer;
|
261
|
+
}
|
262
|
+
|
263
|
+
pre.code-toolbar > .toolbar button {
|
264
|
+
background: none;
|
265
|
+
border: 0;
|
266
|
+
color: inherit;
|
267
|
+
font: inherit;
|
268
|
+
line-height: normal;
|
269
|
+
overflow: visible;
|
270
|
+
padding: 0;
|
271
|
+
-webkit-user-select: none; /* for button */
|
272
|
+
-moz-user-select: none;
|
273
|
+
-ms-user-select: none;
|
274
|
+
}
|
275
|
+
|
276
|
+
pre.code-toolbar > .toolbar a,
|
277
|
+
pre.code-toolbar > .toolbar button,
|
278
|
+
pre.code-toolbar > .toolbar span {
|
279
|
+
color: #bbb;
|
280
|
+
font-size: .8em;
|
281
|
+
padding: 0 .5em;
|
282
|
+
background: #f5f2f0;
|
283
|
+
background: rgba(224, 224, 224, 0.2);
|
284
|
+
box-shadow: 0 2px 0 0 rgba(0,0,0,0.2);
|
285
|
+
border-radius: .5em;
|
286
|
+
}
|
287
|
+
|
288
|
+
pre.code-toolbar > .toolbar a:hover,
|
289
|
+
pre.code-toolbar > .toolbar a:focus,
|
290
|
+
pre.code-toolbar > .toolbar button:hover,
|
291
|
+
pre.code-toolbar > .toolbar button:focus,
|
292
|
+
pre.code-toolbar > .toolbar span:hover,
|
293
|
+
pre.code-toolbar > .toolbar span:focus {
|
294
|
+
color: inherit;
|
295
|
+
text-decoration: none;
|
296
|
+
}
|
297
|
+
|
298
|
+
.prism-previewer,
|
299
|
+
.prism-previewer:before,
|
300
|
+
.prism-previewer:after {
|
301
|
+
position: absolute;
|
302
|
+
pointer-events: none;
|
303
|
+
}
|
304
|
+
.prism-previewer,
|
305
|
+
.prism-previewer:after {
|
306
|
+
left: 50%;
|
307
|
+
}
|
308
|
+
.prism-previewer {
|
309
|
+
margin-top: -48px;
|
310
|
+
width: 32px;
|
311
|
+
height: 32px;
|
312
|
+
margin-left: -16px;
|
313
|
+
|
314
|
+
opacity: 0;
|
315
|
+
-webkit-transition: opacity .25s;
|
316
|
+
-o-transition: opacity .25s;
|
317
|
+
transition: opacity .25s;
|
318
|
+
}
|
319
|
+
.prism-previewer.flipped {
|
320
|
+
margin-top: 0;
|
321
|
+
margin-bottom: -48px;
|
322
|
+
}
|
323
|
+
.prism-previewer:before,
|
324
|
+
.prism-previewer:after {
|
325
|
+
content: '';
|
326
|
+
position: absolute;
|
327
|
+
pointer-events: none;
|
328
|
+
}
|
329
|
+
.prism-previewer:before {
|
330
|
+
top: -5px;
|
331
|
+
right: -5px;
|
332
|
+
left: -5px;
|
333
|
+
bottom: -5px;
|
334
|
+
border-radius: 10px;
|
335
|
+
border: 5px solid #fff;
|
336
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.75);
|
337
|
+
}
|
338
|
+
|
339
|
+
.prism-previewer:after {
|
340
|
+
top: 100%;
|
341
|
+
width: 0;
|
342
|
+
height: 0;
|
343
|
+
margin: 5px 0 0 -7px;
|
344
|
+
border: 7px solid transparent;
|
345
|
+
border-color: rgba(255, 0, 0, 0);
|
346
|
+
border-top-color: #fff;
|
347
|
+
}
|
348
|
+
.prism-previewer.flipped:after {
|
349
|
+
top: auto;
|
350
|
+
bottom: 100%;
|
351
|
+
margin-top: 0;
|
352
|
+
margin-bottom: 5px;
|
353
|
+
border-top-color: rgba(255, 0, 0, 0);
|
354
|
+
border-bottom-color: #fff;
|
355
|
+
}
|
356
|
+
.prism-previewer.active {
|
357
|
+
opacity: 1;
|
358
|
+
}
|
359
|
+
.prism-previewer-color {
|
360
|
+
background-image: linear-gradient(45deg, #bbb 25%, transparent 25%, transparent 75%, #bbb 75%, #bbb), linear-gradient(45deg, #bbb 25%, #eee 25%, #eee 75%, #bbb 75%, #bbb);
|
361
|
+
background-size: 10px 10px;
|
362
|
+
background-position: 0 0, 5px 5px;
|
363
|
+
}
|
364
|
+
.prism-previewer-color:before {
|
365
|
+
background-color: inherit;
|
366
|
+
background-clip: padding-box;
|
367
|
+
}
|
368
|
+
|
369
|
+
.prism-previewer-gradient {
|
370
|
+
background-image: linear-gradient(45deg, #bbb 25%, transparent 25%, transparent 75%, #bbb 75%, #bbb), linear-gradient(45deg, #bbb 25%, #eee 25%, #eee 75%, #bbb 75%, #bbb);
|
371
|
+
background-size: 10px 10px;
|
372
|
+
background-position: 0 0, 5px 5px;
|
373
|
+
|
374
|
+
width: 64px;
|
375
|
+
margin-left: -32px;
|
376
|
+
}
|
377
|
+
.prism-previewer-gradient:before {
|
378
|
+
content: none;
|
379
|
+
}
|
380
|
+
.prism-previewer-gradient div {
|
381
|
+
position: absolute;
|
382
|
+
top: -5px;
|
383
|
+
left: -5px;
|
384
|
+
right: -5px;
|
385
|
+
bottom: -5px;
|
386
|
+
border-radius: 10px;
|
387
|
+
border: 5px solid #fff;
|
388
|
+
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5) inset, 0 0 10px rgba(0, 0, 0, 0.75);
|
389
|
+
}
|
390
|
+
.prism-previewer-easing {
|
391
|
+
margin-top: -76px;
|
392
|
+
margin-left: -30px;
|
393
|
+
width: 60px;
|
394
|
+
height: 60px;
|
395
|
+
background: #333;
|
396
|
+
}
|
397
|
+
.prism-previewer-easing.flipped {
|
398
|
+
margin-bottom: -116px;
|
399
|
+
}
|
400
|
+
.prism-previewer-easing svg {
|
401
|
+
width: 60px;
|
402
|
+
height: 60px;
|
403
|
+
}
|
404
|
+
.prism-previewer-easing circle {
|
405
|
+
fill: hsl(200, 10%, 20%);
|
406
|
+
stroke: white;
|
407
|
+
}
|
408
|
+
.prism-previewer-easing path {
|
409
|
+
fill: none;
|
410
|
+
stroke: white;
|
411
|
+
stroke-linecap: round;
|
412
|
+
stroke-width: 4;
|
413
|
+
}
|
414
|
+
.prism-previewer-easing line {
|
415
|
+
stroke: white;
|
416
|
+
stroke-opacity: 0.5;
|
417
|
+
stroke-width: 2;
|
418
|
+
}
|
419
|
+
@-webkit-keyframes prism-previewer-time {
|
420
|
+
0% {
|
421
|
+
stroke-dasharray: 0, 500;
|
422
|
+
stroke-dashoffset: 0;
|
423
|
+
}
|
424
|
+
50% {
|
425
|
+
stroke-dasharray: 100, 500;
|
426
|
+
stroke-dashoffset: 0;
|
427
|
+
}
|
428
|
+
100% {
|
429
|
+
stroke-dasharray: 0, 500;
|
430
|
+
stroke-dashoffset: -100;
|
431
|
+
}
|
432
|
+
}
|
433
|
+
|
434
|
+
@-o-keyframes prism-previewer-time {
|
435
|
+
0% {
|
436
|
+
stroke-dasharray: 0, 500;
|
437
|
+
stroke-dashoffset: 0;
|
438
|
+
}
|
439
|
+
50% {
|
440
|
+
stroke-dasharray: 100, 500;
|
441
|
+
stroke-dashoffset: 0;
|
442
|
+
}
|
443
|
+
100% {
|
444
|
+
stroke-dasharray: 0, 500;
|
445
|
+
stroke-dashoffset: -100;
|
446
|
+
}
|
447
|
+
}
|
448
|
+
|
449
|
+
@-moz-keyframes prism-previewer-time {
|
450
|
+
0% {
|
451
|
+
stroke-dasharray: 0, 500;
|
452
|
+
stroke-dashoffset: 0;
|
453
|
+
}
|
454
|
+
50% {
|
455
|
+
stroke-dasharray: 100, 500;
|
456
|
+
stroke-dashoffset: 0;
|
457
|
+
}
|
458
|
+
100% {
|
459
|
+
stroke-dasharray: 0, 500;
|
460
|
+
stroke-dashoffset: -100;
|
461
|
+
}
|
462
|
+
}
|
463
|
+
|
464
|
+
@keyframes prism-previewer-time {
|
465
|
+
0% {
|
466
|
+
stroke-dasharray: 0, 500;
|
467
|
+
stroke-dashoffset: 0;
|
468
|
+
}
|
469
|
+
50% {
|
470
|
+
stroke-dasharray: 100, 500;
|
471
|
+
stroke-dashoffset: 0;
|
472
|
+
}
|
473
|
+
100% {
|
474
|
+
stroke-dasharray: 0, 500;
|
475
|
+
stroke-dashoffset: -100;
|
476
|
+
}
|
477
|
+
}
|
478
|
+
|
479
|
+
.prism-previewer-time:before {
|
480
|
+
border-radius: 50%;
|
481
|
+
background: #fff;
|
482
|
+
}
|
483
|
+
.prism-previewer-time:after {
|
484
|
+
margin-top: 4px;
|
485
|
+
}
|
486
|
+
.prism-previewer-time svg {
|
487
|
+
width: 32px;
|
488
|
+
height: 32px;
|
489
|
+
-webkit-transform: rotate(-90deg);
|
490
|
+
-moz-transform: rotate(-90deg);
|
491
|
+
-ms-transform: rotate(-90deg);
|
492
|
+
-o-transform: rotate(-90deg);
|
493
|
+
transform: rotate(-90deg);
|
494
|
+
}
|
495
|
+
.prism-previewer-time circle {
|
496
|
+
fill: transparent;
|
497
|
+
stroke: hsl(200, 10%, 20%);
|
498
|
+
stroke-opacity: 0.9;
|
499
|
+
stroke-width: 32;
|
500
|
+
stroke-dasharray: 0, 500;
|
501
|
+
stroke-dashoffset: 0;
|
502
|
+
-webkit-animation: prism-previewer-time linear infinite 3s;
|
503
|
+
-moz-animation: prism-previewer-time linear infinite 3s;
|
504
|
+
-o-animation: prism-previewer-time linear infinite 3s;
|
505
|
+
animation: prism-previewer-time linear infinite 3s;
|
506
|
+
}
|
507
|
+
.prism-previewer-angle:before {
|
508
|
+
border-radius: 50%;
|
509
|
+
background: #fff;
|
510
|
+
}
|
511
|
+
.prism-previewer-angle:after {
|
512
|
+
margin-top: 4px;
|
513
|
+
}
|
514
|
+
.prism-previewer-angle svg {
|
515
|
+
width: 32px;
|
516
|
+
height: 32px;
|
517
|
+
-webkit-transform: rotate(-90deg);
|
518
|
+
-moz-transform: rotate(-90deg);
|
519
|
+
-ms-transform: rotate(-90deg);
|
520
|
+
-o-transform: rotate(-90deg);
|
521
|
+
transform: rotate(-90deg);
|
522
|
+
}
|
523
|
+
.prism-previewer-angle[data-negative] svg {
|
524
|
+
-webkit-transform: scaleX(-1) rotate(-90deg);
|
525
|
+
-moz-transform: scaleX(-1) rotate(-90deg);
|
526
|
+
-ms-transform: scaleX(-1) rotate(-90deg);
|
527
|
+
-o-transform: scaleX(-1) rotate(-90deg);
|
528
|
+
transform: scaleX(-1) rotate(-90deg);
|
529
|
+
}
|
530
|
+
.prism-previewer-angle circle {
|
531
|
+
fill: transparent;
|
532
|
+
stroke: hsl(200, 10%, 20%);
|
533
|
+
stroke-opacity: 0.9;
|
534
|
+
stroke-width: 32;
|
535
|
+
stroke-dasharray: 0, 500;
|
536
|
+
}
|
537
|
+
/* Fallback, in case JS does not run, to ensure the code is at least visible */
|
538
|
+
.lang-markup script[type='text/plain'],
|
539
|
+
.language-markup script[type='text/plain'],
|
540
|
+
script[type='text/plain'].lang-markup,
|
541
|
+
script[type='text/plain'].language-markup {
|
542
|
+
display: block;
|
543
|
+
font: 100% Consolas, Monaco, monospace;
|
544
|
+
white-space: pre;
|
545
|
+
overflow: auto;
|
546
|
+
}
|
547
|
+
|
548
|
+
.command-line-prompt {
|
549
|
+
border-right: 1px solid #999;
|
550
|
+
display: block;
|
551
|
+
float: left;
|
552
|
+
font-size: 100%;
|
553
|
+
letter-spacing: -1px;
|
554
|
+
margin-right: 1em;
|
555
|
+
pointer-events: none;
|
556
|
+
|
557
|
+
-webkit-user-select: none;
|
558
|
+
-moz-user-select: none;
|
559
|
+
-ms-user-select: none;
|
560
|
+
user-select: none;
|
561
|
+
}
|
562
|
+
|
563
|
+
.command-line-prompt > span:before {
|
564
|
+
color: #999;
|
565
|
+
content: ' ';
|
566
|
+
display: block;
|
567
|
+
padding-right: 0.8em;
|
568
|
+
}
|
569
|
+
|
570
|
+
.command-line-prompt > span[data-user]:before {
|
571
|
+
content: "[" attr(data-user) "@" attr(data-host) "] $";
|
572
|
+
}
|
573
|
+
|
574
|
+
.command-line-prompt > span[data-user="root"]:before {
|
575
|
+
content: "[" attr(data-user) "@" attr(data-host) "] #";
|
576
|
+
}
|
577
|
+
|
578
|
+
.command-line-prompt > span[data-prompt]:before {
|
579
|
+
content: attr(data-prompt);
|
580
|
+
}
|
581
|
+
|