programming-pages 0.5.17 → 0.5.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/page.html +1 -1
- data/_sass/emoji.scss +16 -0
- data/_sass/kbd.scss +20 -0
- data/_sass/svg-icons.scss +520 -0
- data/_sass/syntax.scss +85 -0
- data/screenshot.png +0 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0daba8027505aa19f3dd155b6a06ee97ae591f37037577bfa370973a37c4e5b7
|
4
|
+
data.tar.gz: b26ca7fd66dbbc3e4ac4d8834dae502c8f2023d9fe212d901cc014adce46df71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 833b063ed9ea7eabd3e65d3988f6bbdec6ff6ff9b3f60aad69cc202fa491f9b136c65737d0b0fdd490aff8c8781fb879df4d87c86e7b9259492aa4621738054a
|
7
|
+
data.tar.gz: 96b27db65dea40d6638da930d6d6d8e1ed894072be117aa8f14f2667048dcae899c9587acb369d00b74bf825eccfb7027aa3d31af4e4625da66c2ae0a92257c1
|
data/_layouts/page.html
CHANGED
data/_sass/emoji.scss
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
/*
|
2
|
+
* Emoji sizes to match semantic ui vocabulary and leverage souce being 128px x 128px
|
3
|
+
*/
|
4
|
+
|
5
|
+
img.emoji {
|
6
|
+
width: auto;
|
7
|
+
vertical-align: middle;
|
8
|
+
height: 1.25em; /* medium */
|
9
|
+
}
|
10
|
+
.ui.mini > img.emoji { height: 1.5em; }
|
11
|
+
.ui.tiny > img.emoji { height: 1.25em; }
|
12
|
+
.ui.small > img.emoji { height: 1.125em; }
|
13
|
+
.ui.large > img.emoji { height: 1.5em; }
|
14
|
+
.ui.big > img.emoji { height: 1.75em; }
|
15
|
+
.ui.huge > img.emoji { height: 2em; }
|
16
|
+
.ui.massive > img.emoji { height: 3em; }
|
data/_sass/kbd.scss
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
/*!
|
2
|
+
* Remixed from StackOverflow <kbd> css, user Jin
|
3
|
+
* https://meta.superuser.com/questions/4788/css-for-the-new-kbd-style
|
4
|
+
* https://creativecommons.org/licenses/by-sa/3.0/
|
5
|
+
*/
|
6
|
+
kbd {
|
7
|
+
background-color: #f7f7f7;
|
8
|
+
border-radius: 3px;
|
9
|
+
border: 1px solid #ccc;
|
10
|
+
box-shadow: 0 1px 0 rgba(0,0,0,0.2),0 0 0 2px #fff inset;
|
11
|
+
color: #333;
|
12
|
+
display: inline-block;
|
13
|
+
font-family: Arial,Helvetica,sans-serif;
|
14
|
+
font-size: 75%;
|
15
|
+
line-height: 140%;
|
16
|
+
margin: 0 .1em;
|
17
|
+
padding: .1em .6em;
|
18
|
+
text-shadow: 0 1px 0 #fff;
|
19
|
+
user-select: none;
|
20
|
+
}
|
@@ -0,0 +1,520 @@
|
|
1
|
+
/*!
|
2
|
+
* svg-based version of:
|
3
|
+
* # Semantic UI 2.3.1 - Icon
|
4
|
+
* http://github.com/semantic-org/semantic-ui/
|
5
|
+
*
|
6
|
+
* Released under the MIT license
|
7
|
+
* http://opensource.org/licenses/MIT
|
8
|
+
*/
|
9
|
+
|
10
|
+
/*******************************
|
11
|
+
|
12
|
+
Changes from Semantic-UI font-based icons:
|
13
|
+
|
14
|
+
1. no icon font, no references to font files or font properties
|
15
|
+
2. css is defined for <svg> tags, not <i> tags
|
16
|
+
3. no icon symbols are defined in css; all icons are defined in svg.html as symbol definitions
|
17
|
+
|
18
|
+
specifically, by commented section:
|
19
|
+
|
20
|
+
- Icon : tweaked to remove font references
|
21
|
+
- Types : same
|
22
|
+
- States : same
|
23
|
+
- Variations : same
|
24
|
+
- Groups : same
|
25
|
+
- Icons : removed (see _data/svg_icons.yml for all symbol definitions and ids)
|
26
|
+
- Outline Icons : removed (see _data/svg_icons.yml for all symbol definitions and ids)
|
27
|
+
- Brand Icons : removed (see _data/svg_icons.yml for all symbol definitions and ids)
|
28
|
+
|
29
|
+
Usage:
|
30
|
+
|
31
|
+
font: <i class="info circle icon"></i>
|
32
|
+
svg : {% include icon.liquid id='info-circle' %}
|
33
|
+
|
34
|
+
Why?
|
35
|
+
|
36
|
+
- https://blog.github.com/2016-02-22-delivering-octicons-with-svg/
|
37
|
+
- https://css-tricks.com/icon-fonts-vs-svg/
|
38
|
+
|
39
|
+
*******************************/
|
40
|
+
|
41
|
+
|
42
|
+
/*******************************
|
43
|
+
SVG Icon
|
44
|
+
*******************************/
|
45
|
+
|
46
|
+
svg.icon {
|
47
|
+
display: inline-block;
|
48
|
+
position: relative;
|
49
|
+
top: .18em;
|
50
|
+
width: 1.18em;
|
51
|
+
height: 1em;
|
52
|
+
opacity: 1;
|
53
|
+
margin: 0;
|
54
|
+
fill: currentColor;
|
55
|
+
speak: none;
|
56
|
+
}
|
57
|
+
|
58
|
+
svg.icon:before {
|
59
|
+
background: none !important;
|
60
|
+
}
|
61
|
+
|
62
|
+
|
63
|
+
/*******************************
|
64
|
+
Types
|
65
|
+
*******************************/
|
66
|
+
|
67
|
+
|
68
|
+
/*--------------
|
69
|
+
Loading
|
70
|
+
---------------*/
|
71
|
+
|
72
|
+
svg.icon.loading {
|
73
|
+
height: 1em;
|
74
|
+
line-height: 1;
|
75
|
+
-webkit-animation: icon-loading 2s linear infinite;
|
76
|
+
animation: icon-loading 2s linear infinite;
|
77
|
+
}
|
78
|
+
@-webkit-keyframes icon-loading {
|
79
|
+
from {
|
80
|
+
-webkit-transform: rotate(0deg);
|
81
|
+
transform: rotate(0deg);
|
82
|
+
}
|
83
|
+
to {
|
84
|
+
-webkit-transform: rotate(360deg);
|
85
|
+
transform: rotate(360deg);
|
86
|
+
}
|
87
|
+
}
|
88
|
+
@keyframes icon-loading {
|
89
|
+
from {
|
90
|
+
-webkit-transform: rotate(0deg);
|
91
|
+
transform: rotate(0deg);
|
92
|
+
}
|
93
|
+
to {
|
94
|
+
-webkit-transform: rotate(360deg);
|
95
|
+
transform: rotate(360deg);
|
96
|
+
}
|
97
|
+
}
|
98
|
+
|
99
|
+
|
100
|
+
/*******************************
|
101
|
+
States
|
102
|
+
*******************************/
|
103
|
+
|
104
|
+
svg.icon.hover {
|
105
|
+
opacity: 1 !important;
|
106
|
+
}
|
107
|
+
svg.icon.active {
|
108
|
+
opacity: 1 !important;
|
109
|
+
}
|
110
|
+
svg.emphasized.icon {
|
111
|
+
opacity: 1 !important;
|
112
|
+
}
|
113
|
+
svg.disabled.icon {
|
114
|
+
opacity: 0.45 !important;
|
115
|
+
}
|
116
|
+
|
117
|
+
|
118
|
+
/*******************************
|
119
|
+
Variations
|
120
|
+
*******************************/
|
121
|
+
|
122
|
+
|
123
|
+
/*-------------------
|
124
|
+
Fitted
|
125
|
+
--------------------*/
|
126
|
+
|
127
|
+
svg.fitted.icon {
|
128
|
+
width: auto;
|
129
|
+
margin: 0em !important;
|
130
|
+
}
|
131
|
+
|
132
|
+
/*-------------------
|
133
|
+
Link
|
134
|
+
--------------------*/
|
135
|
+
|
136
|
+
svg.link.icon,
|
137
|
+
svg.link.icons {
|
138
|
+
cursor: pointer;
|
139
|
+
opacity: 0.8;
|
140
|
+
-webkit-transition: opacity 0.1s ease;
|
141
|
+
transition: opacity 0.1s ease;
|
142
|
+
}
|
143
|
+
svg.link.icon:hover,
|
144
|
+
svg.link.icons:hover {
|
145
|
+
opacity: 1 !important;
|
146
|
+
}
|
147
|
+
|
148
|
+
/*-------------------
|
149
|
+
Circular
|
150
|
+
--------------------*/
|
151
|
+
|
152
|
+
svg.circular.icon {
|
153
|
+
border-radius: 500em !important;
|
154
|
+
line-height: 1 !important;
|
155
|
+
padding: 0.5em 0.5em !important;
|
156
|
+
-webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
157
|
+
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
158
|
+
width: 2em !important;
|
159
|
+
height: 2em !important;
|
160
|
+
}
|
161
|
+
svg.circular.inverted.icon {
|
162
|
+
border: none;
|
163
|
+
-webkit-box-shadow: none;
|
164
|
+
box-shadow: none;
|
165
|
+
}
|
166
|
+
|
167
|
+
/*-------------------
|
168
|
+
Flipped
|
169
|
+
--------------------*/
|
170
|
+
|
171
|
+
svg.flipped.icon,
|
172
|
+
svg.horizontally.flipped.icon {
|
173
|
+
-webkit-transform: scale(-1, 1);
|
174
|
+
transform: scale(-1, 1);
|
175
|
+
}
|
176
|
+
svg.vertically.flipped.icon {
|
177
|
+
-webkit-transform: scale(1, -1);
|
178
|
+
transform: scale(1, -1);
|
179
|
+
}
|
180
|
+
|
181
|
+
/*-------------------
|
182
|
+
Rotated
|
183
|
+
--------------------*/
|
184
|
+
|
185
|
+
svg.rotated.icon,
|
186
|
+
svg.right.rotated.icon,
|
187
|
+
svg.clockwise.rotated.icon {
|
188
|
+
-webkit-transform: rotate(90deg);
|
189
|
+
transform: rotate(90deg);
|
190
|
+
}
|
191
|
+
svg.left.rotated.icon,
|
192
|
+
svg.counterclockwise.rotated.icon {
|
193
|
+
-webkit-transform: rotate(-90deg);
|
194
|
+
transform: rotate(-90deg);
|
195
|
+
}
|
196
|
+
|
197
|
+
/*-------------------
|
198
|
+
Bordered
|
199
|
+
--------------------*/
|
200
|
+
|
201
|
+
svg.bordered.icon {
|
202
|
+
line-height: 1;
|
203
|
+
vertical-align: baseline;
|
204
|
+
width: 2em;
|
205
|
+
height: 2em;
|
206
|
+
padding: 0.5em 0em !important;
|
207
|
+
-webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
208
|
+
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
209
|
+
}
|
210
|
+
svg.bordered.inverted.icon {
|
211
|
+
border: none;
|
212
|
+
-webkit-box-shadow: none;
|
213
|
+
box-shadow: none;
|
214
|
+
}
|
215
|
+
|
216
|
+
/*-------------------
|
217
|
+
Inverted
|
218
|
+
--------------------*/
|
219
|
+
|
220
|
+
|
221
|
+
/* Inverted Shapes */
|
222
|
+
svg.inverted.bordered.icon,
|
223
|
+
svg.inverted.circular.icon {
|
224
|
+
background-color: #1B1C1D !important;
|
225
|
+
color: #FFFFFF !important;
|
226
|
+
}
|
227
|
+
svg.inverted.icon {
|
228
|
+
color: #FFFFFF;
|
229
|
+
}
|
230
|
+
|
231
|
+
/*-------------------
|
232
|
+
Colors
|
233
|
+
--------------------*/
|
234
|
+
|
235
|
+
|
236
|
+
/* Red */
|
237
|
+
svg.red.icon {
|
238
|
+
color: #DB2828 !important;
|
239
|
+
}
|
240
|
+
svg.inverted.red.icon {
|
241
|
+
color: #FF695E !important;
|
242
|
+
}
|
243
|
+
svg.inverted.bordered.red.icon,
|
244
|
+
svg.inverted.circular.red.icon {
|
245
|
+
background-color: #DB2828 !important;
|
246
|
+
color: #FFFFFF !important;
|
247
|
+
}
|
248
|
+
|
249
|
+
/* Orange */
|
250
|
+
svg.orange.icon {
|
251
|
+
color: #F2711C !important;
|
252
|
+
}
|
253
|
+
svg.inverted.orange.icon {
|
254
|
+
color: #FF851B !important;
|
255
|
+
}
|
256
|
+
svg.inverted.bordered.orange.icon,
|
257
|
+
svg.inverted.circular.orange.icon {
|
258
|
+
background-color: #F2711C !important;
|
259
|
+
color: #FFFFFF !important;
|
260
|
+
}
|
261
|
+
|
262
|
+
/* Yellow */
|
263
|
+
svg.yellow.icon {
|
264
|
+
color: #FBBD08 !important;
|
265
|
+
}
|
266
|
+
svg.inverted.yellow.icon {
|
267
|
+
color: #FFE21F !important;
|
268
|
+
}
|
269
|
+
svg.inverted.bordered.yellow.icon,
|
270
|
+
svg.inverted.circular.yellow.icon {
|
271
|
+
background-color: #FBBD08 !important;
|
272
|
+
color: #FFFFFF !important;
|
273
|
+
}
|
274
|
+
|
275
|
+
/* Olive */
|
276
|
+
svg.olive.icon {
|
277
|
+
color: #B5CC18 !important;
|
278
|
+
}
|
279
|
+
svg.inverted.olive.icon {
|
280
|
+
color: #D9E778 !important;
|
281
|
+
}
|
282
|
+
svg.inverted.bordered.olive.icon,
|
283
|
+
svg.inverted.circular.olive.icon {
|
284
|
+
background-color: #B5CC18 !important;
|
285
|
+
color: #FFFFFF !important;
|
286
|
+
}
|
287
|
+
|
288
|
+
/* Green */
|
289
|
+
svg.green.icon {
|
290
|
+
color: #21BA45 !important;
|
291
|
+
}
|
292
|
+
svg.inverted.green.icon {
|
293
|
+
color: #2ECC40 !important;
|
294
|
+
}
|
295
|
+
svg.inverted.bordered.green.icon,
|
296
|
+
svg.inverted.circular.green.icon {
|
297
|
+
background-color: #21BA45 !important;
|
298
|
+
color: #FFFFFF !important;
|
299
|
+
}
|
300
|
+
|
301
|
+
/* Teal */
|
302
|
+
svg.teal.icon {
|
303
|
+
color: #00B5AD !important;
|
304
|
+
}
|
305
|
+
svg.inverted.teal.icon {
|
306
|
+
color: #6DFFFF !important;
|
307
|
+
}
|
308
|
+
svg.inverted.bordered.teal.icon,
|
309
|
+
svg.inverted.circular.teal.icon {
|
310
|
+
background-color: #00B5AD !important;
|
311
|
+
color: #FFFFFF !important;
|
312
|
+
}
|
313
|
+
|
314
|
+
/* Blue */
|
315
|
+
svg.blue.icon {
|
316
|
+
color: #2185D0 !important;
|
317
|
+
}
|
318
|
+
svg.inverted.blue.icon {
|
319
|
+
color: #54C8FF !important;
|
320
|
+
}
|
321
|
+
svg.inverted.bordered.blue.icon,
|
322
|
+
svg.inverted.circular.blue.icon {
|
323
|
+
background-color: #2185D0 !important;
|
324
|
+
color: #FFFFFF !important;
|
325
|
+
}
|
326
|
+
|
327
|
+
/* Violet */
|
328
|
+
svg.violet.icon {
|
329
|
+
color: #6435C9 !important;
|
330
|
+
}
|
331
|
+
svg.inverted.violet.icon {
|
332
|
+
color: #A291FB !important;
|
333
|
+
}
|
334
|
+
svg.inverted.bordered.violet.icon,
|
335
|
+
svg.inverted.circular.violet.icon {
|
336
|
+
background-color: #6435C9 !important;
|
337
|
+
color: #FFFFFF !important;
|
338
|
+
}
|
339
|
+
|
340
|
+
/* Purple */
|
341
|
+
svg.purple.icon {
|
342
|
+
color: #A333C8 !important;
|
343
|
+
}
|
344
|
+
svg.inverted.purple.icon {
|
345
|
+
color: #DC73FF !important;
|
346
|
+
}
|
347
|
+
svg.inverted.bordered.purple.icon,
|
348
|
+
svg.inverted.circular.purple.icon {
|
349
|
+
background-color: #A333C8 !important;
|
350
|
+
color: #FFFFFF !important;
|
351
|
+
}
|
352
|
+
|
353
|
+
/* Pink */
|
354
|
+
svg.pink.icon {
|
355
|
+
color: #E03997 !important;
|
356
|
+
}
|
357
|
+
svg.inverted.pink.icon {
|
358
|
+
color: #FF8EDF !important;
|
359
|
+
}
|
360
|
+
svg.inverted.bordered.pink.icon,
|
361
|
+
svg.inverted.circular.pink.icon {
|
362
|
+
background-color: #E03997 !important;
|
363
|
+
color: #FFFFFF !important;
|
364
|
+
}
|
365
|
+
|
366
|
+
/* Brown */
|
367
|
+
svg.brown.icon {
|
368
|
+
color: #A5673F !important;
|
369
|
+
}
|
370
|
+
svg.inverted.brown.icon {
|
371
|
+
color: #D67C1C !important;
|
372
|
+
}
|
373
|
+
svg.inverted.bordered.brown.icon,
|
374
|
+
svg.inverted.circular.brown.icon {
|
375
|
+
background-color: #A5673F !important;
|
376
|
+
color: #FFFFFF !important;
|
377
|
+
}
|
378
|
+
|
379
|
+
/* Grey */
|
380
|
+
svg.grey.icon {
|
381
|
+
color: #767676 !important;
|
382
|
+
}
|
383
|
+
svg.inverted.grey.icon {
|
384
|
+
color: #DCDDDE !important;
|
385
|
+
}
|
386
|
+
svg.inverted.bordered.grey.icon,
|
387
|
+
svg.inverted.circular.grey.icon {
|
388
|
+
background-color: #767676 !important;
|
389
|
+
color: #FFFFFF !important;
|
390
|
+
}
|
391
|
+
|
392
|
+
/* Black */
|
393
|
+
svg.black.icon {
|
394
|
+
color: #1B1C1D !important;
|
395
|
+
}
|
396
|
+
svg.inverted.black.icon {
|
397
|
+
color: #545454 !important;
|
398
|
+
}
|
399
|
+
svg.inverted.bordered.black.icon,
|
400
|
+
svg.inverted.circular.black.icon {
|
401
|
+
background-color: #1B1C1D !important;
|
402
|
+
color: #FFFFFF !important;
|
403
|
+
}
|
404
|
+
|
405
|
+
/*-------------------
|
406
|
+
Sizes
|
407
|
+
--------------------*/
|
408
|
+
|
409
|
+
svg.mini.icon,
|
410
|
+
svg.mini.icons {
|
411
|
+
line-height: 1;
|
412
|
+
font-size: 0.4em;
|
413
|
+
}
|
414
|
+
svg.tiny.icon,
|
415
|
+
svg.tiny.icons {
|
416
|
+
line-height: 1;
|
417
|
+
font-size: 0.5em;
|
418
|
+
}
|
419
|
+
svg.small.icon,
|
420
|
+
svg.small.icons {
|
421
|
+
line-height: 1;
|
422
|
+
font-size: 0.75em;
|
423
|
+
}
|
424
|
+
svg.icon,
|
425
|
+
svg.icons {
|
426
|
+
font-size: 1em;
|
427
|
+
}
|
428
|
+
svg.large.icon,
|
429
|
+
svg.large.icons {
|
430
|
+
line-height: 1;
|
431
|
+
vertical-align: middle;
|
432
|
+
font-size: 1.5em;
|
433
|
+
}
|
434
|
+
svg.big.icon,
|
435
|
+
svg.big.icons {
|
436
|
+
line-height: 1;
|
437
|
+
vertical-align: middle;
|
438
|
+
font-size: 2em;
|
439
|
+
}
|
440
|
+
svg.huge.icon,
|
441
|
+
svg.huge.icons {
|
442
|
+
line-height: 1;
|
443
|
+
vertical-align: middle;
|
444
|
+
font-size: 4em;
|
445
|
+
}
|
446
|
+
svg.massive.icon,
|
447
|
+
svg.massive.icons {
|
448
|
+
line-height: 1;
|
449
|
+
vertical-align: middle;
|
450
|
+
font-size: 8em;
|
451
|
+
}
|
452
|
+
|
453
|
+
|
454
|
+
/*******************************
|
455
|
+
Groups
|
456
|
+
*******************************/
|
457
|
+
|
458
|
+
svg.icons {
|
459
|
+
display: inline-block;
|
460
|
+
position: relative;
|
461
|
+
line-height: 1;
|
462
|
+
}
|
463
|
+
svg.icons .icon {
|
464
|
+
position: absolute;
|
465
|
+
top: 50%;
|
466
|
+
left: 50%;
|
467
|
+
-webkit-transform: translateX(-50%) translateY(-50%);
|
468
|
+
transform: translateX(-50%) translateY(-50%);
|
469
|
+
margin: 0em;
|
470
|
+
margin: 0;
|
471
|
+
}
|
472
|
+
svg.icons .icon:first-child {
|
473
|
+
position: static;
|
474
|
+
width: auto;
|
475
|
+
height: auto;
|
476
|
+
vertical-align: top;
|
477
|
+
-webkit-transform: none;
|
478
|
+
transform: none;
|
479
|
+
margin-right: 0.25rem;
|
480
|
+
}
|
481
|
+
|
482
|
+
/* Corner Icon */
|
483
|
+
svg.icons .corner.icon {
|
484
|
+
top: auto;
|
485
|
+
left: auto;
|
486
|
+
right: 0;
|
487
|
+
bottom: 0;
|
488
|
+
-webkit-transform: none;
|
489
|
+
transform: none;
|
490
|
+
font-size: 0.45em;
|
491
|
+
text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
|
492
|
+
}
|
493
|
+
svg.icons .top.right.corner.icon {
|
494
|
+
top: 0;
|
495
|
+
left: auto;
|
496
|
+
right: 0;
|
497
|
+
bottom: auto;
|
498
|
+
}
|
499
|
+
svg.icons .top.left.corner.icon {
|
500
|
+
top: 0;
|
501
|
+
left: 0;
|
502
|
+
right: auto;
|
503
|
+
bottom: auto;
|
504
|
+
}
|
505
|
+
svg.icons .bottom.left.corner.icon {
|
506
|
+
top: auto;
|
507
|
+
left: 0;
|
508
|
+
right: auto;
|
509
|
+
bottom: 0;
|
510
|
+
}
|
511
|
+
svg.icons .bottom.right.corner.icon {
|
512
|
+
top: auto;
|
513
|
+
left: auto;
|
514
|
+
right: 0;
|
515
|
+
bottom: 0;
|
516
|
+
}
|
517
|
+
svg.icons .inverted.corner.icon {
|
518
|
+
text-shadow: -1px -1px 0 #1B1C1D, 1px -1px 0 #1B1C1D, -1px 1px 0 #1B1C1D, 1px 1px 0 #1B1C1D;
|
519
|
+
}
|
520
|
+
|
data/_sass/syntax.scss
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
/*!
|
2
|
+
* monokai original author: Wimer Hazenberg
|
3
|
+
* theme modified from: https://github.com/richleland/pygments-css/blob/master/monokai.css
|
4
|
+
* rules synced with rouge token types (see: https://github.com/jneen/rouge/blob/master/lib/rouge/token.rb)
|
5
|
+
*/
|
6
|
+
pre.highlight {
|
7
|
+
background-color: #272822;
|
8
|
+
color: #f8f8f2;
|
9
|
+
padding: .5em;
|
10
|
+
border-radius: .5em;
|
11
|
+
}
|
12
|
+
|
13
|
+
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
14
|
+
.highlight .c { color: #75715e } /* Comment */
|
15
|
+
.highlight .c1 { color: #75715e } /* Comment.Single */
|
16
|
+
.highlight .cd { color: #75715e } /* Comment.Doc */
|
17
|
+
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
18
|
+
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
19
|
+
.highlight .cs { color: #75715e } /* Comment.Special */
|
20
|
+
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
21
|
+
.highlight .g { color: #66d9ef } /* Generic */
|
22
|
+
.highlight .gd { color: #f92672 } /* Generic.Deleted */
|
23
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
24
|
+
.highlight .gh { color: #75715e } /* Generic.Heading */
|
25
|
+
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
|
26
|
+
.highlight .gl { color: #66efd9 } /* Generic.Lineno */
|
27
|
+
.highlight .go { color: #66d9ef } /* Generic.Output */
|
28
|
+
.highlight .gp { color: #66efd9 } /* Generic.Prompt */
|
29
|
+
.highlight .gr { color: #960050; background-color: #1e0010 } /* Generic.Error */
|
30
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
31
|
+
.highlight .gt { color: #66efd9 } /* Generic.Traceback */
|
32
|
+
.highlight .gu { color: #75715e } /* Generic.Subheading */
|
33
|
+
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
34
|
+
.highlight .k { color: #66d9ef } /* Keyword */
|
35
|
+
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
36
|
+
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
37
|
+
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
38
|
+
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
39
|
+
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
40
|
+
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
41
|
+
.highlight .kv { color: #66d9ef } /* Keyword.Variable */
|
42
|
+
.highlight .l { color: #ae81ff } /* Literal */
|
43
|
+
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
44
|
+
.highlight .m { color: #ae81ff } /* Literal.Number */
|
45
|
+
.highlight .mb { color: #ae81ff } /* Literal.Number.Bin */
|
46
|
+
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
47
|
+
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
48
|
+
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
49
|
+
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
50
|
+
.highlight .mx { color: #ae81ff } /* Literal.Number.Other */
|
51
|
+
.highlight .n { color: #f8f8f2 } /* Name */
|
52
|
+
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
53
|
+
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
54
|
+
.highlight .nc { color: #a6e22e } /* Name.Class */
|
55
|
+
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
56
|
+
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
57
|
+
.highlight .nf { color: #a6e22e } /* Name.Function */
|
58
|
+
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
59
|
+
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
60
|
+
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
61
|
+
.highlight .no { color: #66d9ef } /* Name.Constant */
|
62
|
+
.highlight .nt { color: #f92672 } /* Name.Tag */
|
63
|
+
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
64
|
+
.highlight .nx { color: #a6e22e } /* Name.Other */
|
65
|
+
.highlight .o { color: #f92672 } /* Operator */
|
66
|
+
.highlight .ow { color: #f92672 } /* Operator.Word */
|
67
|
+
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
68
|
+
.highlight .pi { color: #f8f8f2 } /* Punctuation.Indicator */
|
69
|
+
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
70
|
+
.highlight .s { color: #e6db74 } /* Literal.String */
|
71
|
+
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
72
|
+
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
73
|
+
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
74
|
+
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
75
|
+
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
76
|
+
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
77
|
+
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
78
|
+
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
79
|
+
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
80
|
+
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
81
|
+
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
82
|
+
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
83
|
+
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
84
|
+
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
85
|
+
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
data/screenshot.png
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: programming-pages
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pixeldroid
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: github-pages
|
@@ -126,6 +126,10 @@ files:
|
|
126
126
|
- _layouts/guide-index.html
|
127
127
|
- _layouts/layout.html
|
128
128
|
- _layouts/page.html
|
129
|
+
- _sass/emoji.scss
|
130
|
+
- _sass/kbd.scss
|
131
|
+
- _sass/svg-icons.scss
|
132
|
+
- _sass/syntax.scss
|
129
133
|
- assets/fonts/progp-symbol.woff2
|
130
134
|
- assets/fonts/progp_symbol.svg
|
131
135
|
- assets/site.js
|