jekyll-theme-minimal-ryan 0.7.0 → 0.8.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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +4 -0
- data/_sass/minimal-ryan/_base.scss +4 -0
- data/assets/css/code.css +427 -61
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e9e2ca17bbc69f19cded4e09789f648efe6dd749b6b802d6c59fe2ccdaacd15
|
4
|
+
data.tar.gz: 77d86f5759ba03739716629f4732798e1c60659b381c3c0b9671c3aba14fa484
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 865aef16bfb9417256271cf842354858b03093545a063f821738f147c8ea071264a5f74197bbb89df23a35fcdac364bad467ef73dff5c9f1b6c614f3a8233acf
|
7
|
+
data.tar.gz: f170314677da721a55c19f3d63a20be1213406b5fbec3085fc85516bce55b4cc4adb1e7c42453f4b9714a9ca8bd2b28f546b8c0b7ec40342e627ca070a1e2159
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -57,3 +57,7 @@ Your theme is setup just like a normal Jekyll site! To test your theme, run `bun
|
|
57
57
|
## License
|
58
58
|
|
59
59
|
The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
60
|
+
|
61
|
+
## Acknowledgements
|
62
|
+
|
63
|
+
- Syntax highlighting for `<code>` blocks comes from https://github.com/jwarby/jekyll-pygments-themes.
|
data/assets/css/code.css
CHANGED
@@ -1,61 +1,427 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
.highlight
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
.highlight .
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
.highlight .
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
.highlight .
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
.highlight .na {
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
.highlight .
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
.highlight .
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
.highlight .
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
.highlight .
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
.highlight .
|
59
|
-
|
60
|
-
|
61
|
-
|
1
|
+
/* Generated by Pygments CSS Theme Builder - https://jwarby.github.io/jekyll-pygments-themes/builder.html */
|
2
|
+
/* Base Style */
|
3
|
+
.highlight pre {
|
4
|
+
padding: 16px 0px;
|
5
|
+
color: #000000;
|
6
|
+
background-color: #fcfcfc;
|
7
|
+
}
|
8
|
+
|
9
|
+
/* Punctuation */
|
10
|
+
.highlight .p {
|
11
|
+
color: #000000;
|
12
|
+
background-color: #fcfcfc;
|
13
|
+
}
|
14
|
+
|
15
|
+
/* Error */
|
16
|
+
.highlight .err {
|
17
|
+
color: #000000;
|
18
|
+
background-color: #fcfcfc;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* Base Style */
|
22
|
+
.highlight .n {
|
23
|
+
color: #000000;
|
24
|
+
background-color: transparent;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Name Attribute */
|
28
|
+
.highlight .na {
|
29
|
+
color: #000000;
|
30
|
+
background-color: transparent;
|
31
|
+
}
|
32
|
+
|
33
|
+
/* Name Builtin */
|
34
|
+
.highlight .nb {
|
35
|
+
color: #000000;
|
36
|
+
background-color: transparent;
|
37
|
+
}
|
38
|
+
|
39
|
+
/* Name Class */
|
40
|
+
.highlight .nc {
|
41
|
+
color: #000000;
|
42
|
+
background-color: transparent;
|
43
|
+
}
|
44
|
+
|
45
|
+
/* Name Constant */
|
46
|
+
.highlight .no {
|
47
|
+
color: #000000;
|
48
|
+
background-color: transparent;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* Name Decorator */
|
52
|
+
.highlight .nd {
|
53
|
+
color: #000000;
|
54
|
+
background-color: transparent;
|
55
|
+
}
|
56
|
+
|
57
|
+
/* Name Entity */
|
58
|
+
.highlight .ni {
|
59
|
+
color: #000000;
|
60
|
+
background-color: transparent;
|
61
|
+
}
|
62
|
+
|
63
|
+
/* Name Exception */
|
64
|
+
.highlight .ne {
|
65
|
+
color: #000000;
|
66
|
+
background-color: transparent;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* Name Function */
|
70
|
+
.highlight .nf {
|
71
|
+
color: #000000;
|
72
|
+
background-color: transparent;
|
73
|
+
}
|
74
|
+
|
75
|
+
/* Name Label */
|
76
|
+
.highlight .nl {
|
77
|
+
color: #000000;
|
78
|
+
background-color: transparent;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Name Namespace */
|
82
|
+
.highlight .nn {
|
83
|
+
color: #000000;
|
84
|
+
background-color: transparent;
|
85
|
+
}
|
86
|
+
|
87
|
+
/* Name Other */
|
88
|
+
.highlight .nx {
|
89
|
+
color: #000000;
|
90
|
+
background-color: transparent;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* Name Property */
|
94
|
+
.highlight .py {
|
95
|
+
color: #000000;
|
96
|
+
background-color: transparent;
|
97
|
+
}
|
98
|
+
|
99
|
+
/* Name Tag */
|
100
|
+
.highlight .nt {
|
101
|
+
color: #000000;
|
102
|
+
background-color: transparent;
|
103
|
+
}
|
104
|
+
|
105
|
+
/* Name Variable */
|
106
|
+
.highlight .nv {
|
107
|
+
color: #000000;
|
108
|
+
background-color: transparent;
|
109
|
+
}
|
110
|
+
|
111
|
+
/* Name Variable Class */
|
112
|
+
.highlight .vc {
|
113
|
+
color: #000000;
|
114
|
+
background-color: transparent;
|
115
|
+
}
|
116
|
+
|
117
|
+
/* Name Variable Global */
|
118
|
+
.highlight .vg {
|
119
|
+
color: #000000;
|
120
|
+
background-color: transparent;
|
121
|
+
}
|
122
|
+
|
123
|
+
/* Name Variable Instance */
|
124
|
+
.highlight .vi {
|
125
|
+
color: #000000;
|
126
|
+
background-color: transparent;
|
127
|
+
}
|
128
|
+
|
129
|
+
/* Name Builtin Pseudo */
|
130
|
+
.highlight .bp {
|
131
|
+
color: #000000;
|
132
|
+
background-color: transparent;
|
133
|
+
}
|
134
|
+
|
135
|
+
/* Base Style */
|
136
|
+
.highlight .g {
|
137
|
+
color: #000000;
|
138
|
+
background-color: #ffffff;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* */
|
142
|
+
.highlight .gd {
|
143
|
+
color: #000000;
|
144
|
+
background-color: #ffffff;
|
145
|
+
}
|
146
|
+
|
147
|
+
/* Base Style */
|
148
|
+
.highlight .o {
|
149
|
+
color: #000000;
|
150
|
+
background-color: transparent;
|
151
|
+
}
|
152
|
+
|
153
|
+
/* Operator Word */
|
154
|
+
.highlight .ow {
|
155
|
+
color: #000000;
|
156
|
+
background-color: transparent;
|
157
|
+
}
|
158
|
+
|
159
|
+
/* Base Style */
|
160
|
+
.highlight .c {
|
161
|
+
color: #000000;
|
162
|
+
background-color: transparent;
|
163
|
+
}
|
164
|
+
|
165
|
+
/* Comment Multiline */
|
166
|
+
.highlight .cm {
|
167
|
+
color: #000000;
|
168
|
+
background-color: transparent;
|
169
|
+
}
|
170
|
+
|
171
|
+
/* Comment Preproc */
|
172
|
+
.highlight .cp {
|
173
|
+
color: #000000;
|
174
|
+
background-color: transparent;
|
175
|
+
}
|
176
|
+
|
177
|
+
/* Comment Single */
|
178
|
+
.highlight .c1 {
|
179
|
+
color: #000000;
|
180
|
+
background-color: transparent;
|
181
|
+
}
|
182
|
+
|
183
|
+
/* Comment Special */
|
184
|
+
.highlight .cs {
|
185
|
+
color: #000000;
|
186
|
+
background-color: transparent;
|
187
|
+
}
|
188
|
+
|
189
|
+
/* Base Style */
|
190
|
+
.highlight .k {
|
191
|
+
color: #000000;
|
192
|
+
background-color: transparent;
|
193
|
+
}
|
194
|
+
|
195
|
+
/* Keyword Constant */
|
196
|
+
.highlight .kc {
|
197
|
+
color: #000000;
|
198
|
+
background-color: transparent;
|
199
|
+
}
|
200
|
+
|
201
|
+
/* Keyword Declaration */
|
202
|
+
.highlight .kd {
|
203
|
+
color: #000000;
|
204
|
+
background-color: transparent;
|
205
|
+
}
|
206
|
+
|
207
|
+
/* Keyword Namespace */
|
208
|
+
.highlight .kn {
|
209
|
+
color: #000000;
|
210
|
+
background-color: transparent;
|
211
|
+
}
|
212
|
+
|
213
|
+
/* Keyword Pseudo */
|
214
|
+
.highlight .kp {
|
215
|
+
color: #000000;
|
216
|
+
background-color: transparent;
|
217
|
+
}
|
218
|
+
|
219
|
+
/* Keyword Reserved */
|
220
|
+
.highlight .kr {
|
221
|
+
color: #000000;
|
222
|
+
background-color: transparent;
|
223
|
+
}
|
224
|
+
|
225
|
+
/* Keyword Type */
|
226
|
+
.highlight .kt {
|
227
|
+
color: #000000;
|
228
|
+
background-color: transparent;
|
229
|
+
}
|
230
|
+
|
231
|
+
/* Base Style */
|
232
|
+
.highlight .l {
|
233
|
+
color: #000000;
|
234
|
+
background-color: transparent;
|
235
|
+
}
|
236
|
+
|
237
|
+
/* Literal Date */
|
238
|
+
.highlight .ld {
|
239
|
+
color: #000000;
|
240
|
+
background-color: transparent;
|
241
|
+
}
|
242
|
+
|
243
|
+
/* Literal Number */
|
244
|
+
.highlight .m {
|
245
|
+
color: #000000;
|
246
|
+
background-color: transparent;
|
247
|
+
}
|
248
|
+
|
249
|
+
/* Literal Number Float */
|
250
|
+
.highlight .mf {
|
251
|
+
color: #000000;
|
252
|
+
background-color: transparent;
|
253
|
+
}
|
254
|
+
|
255
|
+
/* Literal Number Hex */
|
256
|
+
.highlight .mh {
|
257
|
+
color: #000000;
|
258
|
+
background-color: transparent;
|
259
|
+
}
|
260
|
+
|
261
|
+
/* Literal Number Integer */
|
262
|
+
.highlight .mi {
|
263
|
+
color: #000000;
|
264
|
+
background-color: transparent;
|
265
|
+
}
|
266
|
+
|
267
|
+
/* Literal Number Oct */
|
268
|
+
.highlight .mo {
|
269
|
+
color: #000000;
|
270
|
+
background-color: transparent;
|
271
|
+
}
|
272
|
+
|
273
|
+
/* Literal Number Integer Long */
|
274
|
+
.highlight .il {
|
275
|
+
color: #000000;
|
276
|
+
background-color: transparent;
|
277
|
+
}
|
278
|
+
|
279
|
+
/* Literal String */
|
280
|
+
.highlight .s {
|
281
|
+
color: #000000;
|
282
|
+
background-color: #ffffff;
|
283
|
+
}
|
284
|
+
|
285
|
+
/* Literal String Backtick */
|
286
|
+
.highlight .sb {
|
287
|
+
color: #000000;
|
288
|
+
background-color: transparent;
|
289
|
+
}
|
290
|
+
|
291
|
+
/* Literal String Char */
|
292
|
+
.highlight .sc {
|
293
|
+
color: #000000;
|
294
|
+
background-color: transparent;
|
295
|
+
}
|
296
|
+
|
297
|
+
/* Literal String Doc */
|
298
|
+
.highlight .sd {
|
299
|
+
color: #000000;
|
300
|
+
background-color: transparent;
|
301
|
+
}
|
302
|
+
|
303
|
+
/* Literal String Double */
|
304
|
+
.highlight .s2 {
|
305
|
+
color: #000000;
|
306
|
+
background-color: transparent;
|
307
|
+
}
|
308
|
+
|
309
|
+
/* Literal String Escape */
|
310
|
+
.highlight .se {
|
311
|
+
color: #000000;
|
312
|
+
background-color: transparent;
|
313
|
+
}
|
314
|
+
|
315
|
+
/* Literal String Heredoc */
|
316
|
+
.highlight .sh {
|
317
|
+
color: #000000;
|
318
|
+
background-color: transparent;
|
319
|
+
}
|
320
|
+
|
321
|
+
/* Literal String Interpol */
|
322
|
+
.highlight .si {
|
323
|
+
color: #000000;
|
324
|
+
background-color: transparent;
|
325
|
+
}
|
326
|
+
|
327
|
+
/* Literal String Other */
|
328
|
+
.highlight .sx {
|
329
|
+
color: #000000;
|
330
|
+
background-color: transparent;
|
331
|
+
}
|
332
|
+
|
333
|
+
/* Literal String Regex */
|
334
|
+
.highlight .sr {
|
335
|
+
color: #000000;
|
336
|
+
background-color: transparent;
|
337
|
+
}
|
338
|
+
|
339
|
+
/* Literal String Single */
|
340
|
+
.highlight .s1 {
|
341
|
+
color: #000000;
|
342
|
+
background-color: transparent;
|
343
|
+
}
|
344
|
+
|
345
|
+
/* Literal String Symbol */
|
346
|
+
.highlight .ss {
|
347
|
+
color: #000000;
|
348
|
+
background-color: transparent;
|
349
|
+
}
|
350
|
+
|
351
|
+
/* Base Style */
|
352
|
+
.highlight .g {
|
353
|
+
color: transparent;
|
354
|
+
background-color: transparent;
|
355
|
+
}
|
356
|
+
|
357
|
+
/* Generic Deleted */
|
358
|
+
.highlight .gd {
|
359
|
+
color: transparent;
|
360
|
+
background-color: transparent;
|
361
|
+
}
|
362
|
+
|
363
|
+
/* Generic Emph */
|
364
|
+
.highlight .ge {
|
365
|
+
color: transparent;
|
366
|
+
background-color: transparent;
|
367
|
+
}
|
368
|
+
|
369
|
+
/* Generic Error */
|
370
|
+
.highlight .gr {
|
371
|
+
color: transparent;
|
372
|
+
background-color: transparent;
|
373
|
+
}
|
374
|
+
|
375
|
+
/* Generic Heading */
|
376
|
+
.highlight .gh {
|
377
|
+
color: transparent;
|
378
|
+
background-color: transparent;
|
379
|
+
}
|
380
|
+
|
381
|
+
/* Generic Inserted */
|
382
|
+
.highlight .gi {
|
383
|
+
color: transparent;
|
384
|
+
background-color: transparent;
|
385
|
+
}
|
386
|
+
|
387
|
+
/* Generic Output */
|
388
|
+
.highlight .go {
|
389
|
+
color: transparent;
|
390
|
+
background-color: transparent;
|
391
|
+
}
|
392
|
+
|
393
|
+
/* Generic Prompt */
|
394
|
+
.highlight .gp {
|
395
|
+
color: transparent;
|
396
|
+
background-color: transparent;
|
397
|
+
}
|
398
|
+
|
399
|
+
/* Generic Strong */
|
400
|
+
.highlight .gs {
|
401
|
+
color: transparent;
|
402
|
+
background-color: transparent;
|
403
|
+
}
|
404
|
+
|
405
|
+
/* Generic Subheading */
|
406
|
+
.highlight .gu {
|
407
|
+
color: transparent;
|
408
|
+
background-color: transparent;
|
409
|
+
}
|
410
|
+
|
411
|
+
/* Generic Traceback */
|
412
|
+
.highlight .gt {
|
413
|
+
color: transparent;
|
414
|
+
background-color: transparent;
|
415
|
+
}
|
416
|
+
|
417
|
+
/* Other */
|
418
|
+
.highlight .x {
|
419
|
+
color: #000000;
|
420
|
+
background-color: transparent;
|
421
|
+
}
|
422
|
+
|
423
|
+
/* Text Whitespace */
|
424
|
+
.highlight .w {
|
425
|
+
color: transparent;
|
426
|
+
background-color: transparent;
|
427
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-minimal-ryan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ryanshepps
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|