jekyll-theme-doodle 5.1.8 → 5.1.9
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/README.md +1 -0
- data/_sass/minima/_base.scss +9 -29
- data/_sass/minima/_navigation-bar.scss +1 -0
- data/_sass/minima/_pinned-post.scss +1 -0
- data/_sass/minima/_posts.scss +8 -4
- data/_sass/minima/_syntax-highlighting.scss +292 -61
- data/_sass/minima.scss +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb7883ecaae0f182f8068c610a96a1e0b0693094a9c72fbfe6c217fd9d6db664
|
4
|
+
data.tar.gz: 8929366066eb7e901899dd32f74ec2f17fbb6cb8d4ff3f81ed9aac22c9b894c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f1164ea9426b7412592b4cffef94295da6e89c2aab08cfa61260d94dce3eeffd0d3749880f97f20acd53920cf78d79bed9811f120482496e74996b61f124ba0c
|
7
|
+
data.tar.gz: 272b3b39b923c6f0d0f70604a98fb6712af42fdfd4170ed846db38461e92f03e624e25a731208aacb4d37e5531343141a5193a95ec8108e89337855472fd6eb1
|
data/README.md
CHANGED
@@ -149,6 +149,7 @@ icon: "/assets/icons/about.svg"
|
|
149
149
|
- [ ] Add support for comments
|
150
150
|
- [ ] Search functionality
|
151
151
|
- [ ] automatic table of contents generation (button in mobile view/ sidebar in desktop view)
|
152
|
+
- [ ] scroll progress indicator
|
152
153
|
|
153
154
|
## Contributing
|
154
155
|
|
data/_sass/minima/_base.scss
CHANGED
@@ -143,44 +143,24 @@ a {
|
|
143
143
|
* Blockquotes
|
144
144
|
*/
|
145
145
|
blockquote {
|
146
|
-
color: var(--md-sys-color-
|
147
|
-
|
148
|
-
padding
|
149
|
-
margin-left:
|
150
|
-
margin-right:
|
146
|
+
background-color: var(--md-sys-color-tertiary-container);
|
147
|
+
color: var(--md-sys-color-on-tertiary-container);
|
148
|
+
padding: $spacing-unit;
|
149
|
+
margin-left: 10px;
|
150
|
+
margin-right: 10px;
|
151
|
+
border-radius: 16px;
|
151
152
|
@include relative-font-size(1.125);
|
152
153
|
letter-spacing: -1px;
|
153
154
|
|
154
155
|
> :last-child {
|
155
156
|
margin-bottom: 0;
|
156
157
|
}
|
158
|
+
> p {
|
159
|
+
text-align: left;
|
160
|
+
}
|
157
161
|
}
|
158
162
|
|
159
|
-
/**
|
160
|
-
* Code formatting
|
161
|
-
*/
|
162
|
-
pre,
|
163
|
-
code {
|
164
|
-
@include relative-font-size(0.9375);
|
165
|
-
border: 1px solid var(--md-sys-color-outline);
|
166
|
-
border-radius: 3px;
|
167
|
-
background-color: var(--md-sys-color-surface-container-high);
|
168
|
-
}
|
169
|
-
|
170
|
-
code {
|
171
|
-
padding: 1px 5px;
|
172
|
-
}
|
173
|
-
|
174
|
-
pre {
|
175
|
-
padding: 8px 12px;
|
176
|
-
overflow-x: auto;
|
177
163
|
|
178
|
-
> code {
|
179
|
-
border: 0;
|
180
|
-
padding-right: 0;
|
181
|
-
padding-left: 0;
|
182
|
-
}
|
183
|
-
}
|
184
164
|
|
185
165
|
/**
|
186
166
|
* Wrapper
|
data/_sass/minima/_posts.scss
CHANGED
@@ -41,17 +41,18 @@
|
|
41
41
|
background: var(--md-sys-color-surface);
|
42
42
|
border-radius: 24px;
|
43
43
|
padding: 24px;
|
44
|
-
@include media-query($on-palm){
|
44
|
+
@include media-query($on-palm) {
|
45
45
|
padding: 8px;
|
46
46
|
}
|
47
47
|
}
|
48
|
+
|
49
|
+
p {
|
50
|
+
text-align: justify;
|
51
|
+
}
|
48
52
|
.post-content {
|
49
53
|
margin-bottom: $spacing-unit;
|
50
54
|
|
51
55
|
// text-align: justify;
|
52
|
-
p {
|
53
|
-
text-align: justify;
|
54
|
-
}
|
55
56
|
|
56
57
|
h2 {
|
57
58
|
@include relative-font-size(2);
|
@@ -76,6 +77,9 @@
|
|
76
77
|
@include relative-font-size(1.125);
|
77
78
|
}
|
78
79
|
}
|
80
|
+
a{
|
81
|
+
text-decoration: underline;
|
82
|
+
}
|
79
83
|
}
|
80
84
|
|
81
85
|
.post-list {
|
@@ -1,68 +1,299 @@
|
|
1
|
+
pre,
|
2
|
+
code {
|
3
|
+
@include relative-font-size(0.9375);
|
4
|
+
border: 1px solid var(--md-sys-color-outline);
|
5
|
+
border-radius: 3px;
|
6
|
+
background-color: var(--md-sys-color-surface-container);
|
7
|
+
}
|
8
|
+
|
9
|
+
code {
|
10
|
+
padding: 1px 5px;
|
11
|
+
}
|
12
|
+
|
13
|
+
pre {
|
14
|
+
padding: 8px 12px;
|
15
|
+
overflow-x: auto;
|
16
|
+
|
17
|
+
> code {
|
18
|
+
border: 0;
|
19
|
+
padding-right: 0;
|
20
|
+
padding-left: 0;
|
21
|
+
}
|
22
|
+
}
|
1
23
|
.highlight {
|
2
|
-
background: var(--md-sys-color-surface-container
|
24
|
+
background: var(--md-sys-color-surface-container);
|
3
25
|
@extend %vertical-rhythm;
|
4
26
|
|
5
27
|
.highlighter-rouge & {
|
6
|
-
|
28
|
+
background: var(--md-sys-color-surface-container);
|
7
29
|
}
|
30
|
+
}
|
31
|
+
// .language-plaintext{
|
32
|
+
// background-color: var(--md-sys-color-secondary-container);
|
33
|
+
// color: var(--md-sys-color-on-secondary-container);
|
34
|
+
// }
|
35
|
+
:root {
|
36
|
+
/* Light mode colors */
|
37
|
+
--light-comment: #8e908c;
|
38
|
+
--light-error: #c82829;
|
39
|
+
--light-keyword: #8959a8;
|
40
|
+
--light-operator: #3e999f;
|
41
|
+
--light-comment-preproc: #eab700;
|
42
|
+
--light-deleted: #c82829;
|
43
|
+
--light-deleted-bg: #ffdad9;
|
44
|
+
--light-inserted: #718c00;
|
45
|
+
--light-inserted-bg: #e6ffed;
|
46
|
+
--light-output: #4d4d4c;
|
47
|
+
--light-prompt: #8959a8;
|
48
|
+
--light-strong: #000000;
|
49
|
+
--light-traceback: #c82829;
|
50
|
+
--light-number: #f5871f;
|
51
|
+
--light-string: #718c00;
|
52
|
+
--light-attribute: #3e999f;
|
53
|
+
--light-builtin: #4271ae;
|
54
|
+
--light-class: #8959a8;
|
55
|
+
--light-constant: #f5871f;
|
56
|
+
--light-entity: #3e999f;
|
57
|
+
--light-exception: #c82829;
|
58
|
+
--light-function: #4271ae;
|
59
|
+
--light-namespace: #4d4d4c;
|
60
|
+
--light-tag: #c82829;
|
61
|
+
--light-variable: #f5871f;
|
62
|
+
--light-whitespace: #ffffff;
|
63
|
+
--light-regex: #3e999f;
|
64
|
+
--light-symbol: #8959a8;
|
65
|
+
|
66
|
+
/* Dark mode colors */
|
67
|
+
--dark-comment: #999999;
|
68
|
+
--dark-error: #ff6c6b;
|
69
|
+
--dark-error-bg: #2c2c2c;
|
70
|
+
--dark-keyword: #c5a5c5;
|
71
|
+
--dark-operator: #56b6c2;
|
72
|
+
--dark-comment-preproc: #e6c07b;
|
73
|
+
--dark-deleted: #e06c75;
|
74
|
+
--dark-deleted-bg: #3c2a2a;
|
75
|
+
--dark-inserted: #98c379;
|
76
|
+
--dark-inserted-bg: #2a3c2a;
|
77
|
+
--dark-output: #5c6370;
|
78
|
+
--dark-prompt: #c678dd;
|
79
|
+
--dark-strong: #e6c07b;
|
80
|
+
--dark-traceback: #e06c75;
|
81
|
+
--dark-number: #d19a66;
|
82
|
+
--dark-string: #98c379;
|
83
|
+
--dark-attribute: #56b6c2;
|
84
|
+
--dark-builtin: #61aeee;
|
85
|
+
--dark-class: #c678dd;
|
86
|
+
--dark-constant: #d19a66;
|
87
|
+
--dark-entity: #56b6c2;
|
88
|
+
--dark-exception: #e06c75;
|
89
|
+
--dark-function: #61aeee;
|
90
|
+
--dark-namespace: #abb2bf;
|
91
|
+
--dark-tag: #e06c75;
|
92
|
+
--dark-variable: #d19a66;
|
93
|
+
--dark-whitespace: #5c6370;
|
94
|
+
--dark-regex: #56b6c2;
|
95
|
+
--dark-symbol: #c678dd;
|
96
|
+
}
|
97
|
+
|
98
|
+
.light-pink,
|
99
|
+
.light-yellow,
|
100
|
+
.light-cyan,
|
101
|
+
.light-blue,
|
102
|
+
.light-green {
|
103
|
+
/* Light mode (default) */
|
8
104
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
105
|
+
--comment: var(--light-comment);
|
106
|
+
--error: var(--light-error);
|
107
|
+
--keyword: var(--light-keyword);
|
108
|
+
--operator: var(--light-operator);
|
109
|
+
--comment-preproc: var(--light-comment-preproc);
|
110
|
+
--deleted: var(--light-deleted);
|
111
|
+
--deleted-bg: var(--light-deleted-bg);
|
112
|
+
--inserted: var(--light-inserted);
|
113
|
+
--inserted-bg: var(--light-inserted-bg);
|
114
|
+
--output: var(--light-output);
|
115
|
+
--prompt: var(--light-prompt);
|
116
|
+
--strong: var(--light-strong);
|
117
|
+
--traceback: var(--light-traceback);
|
118
|
+
--number: var(--light-number);
|
119
|
+
--string: var(--light-string);
|
120
|
+
--attribute: var(--light-attribute);
|
121
|
+
--builtin: var(--light-builtin);
|
122
|
+
--class: var(--light-class);
|
123
|
+
--constant: var(--light-constant);
|
124
|
+
--entity: var(--light-entity);
|
125
|
+
--exception: var(--light-exception);
|
126
|
+
--function: var(--light-function);
|
127
|
+
--namespace: var(--light-namespace);
|
128
|
+
--tag: var(--light-tag);
|
129
|
+
--variable: var(--light-variable);
|
130
|
+
--whitespace: var(--light-whitespace);
|
131
|
+
--regex: var(--light-regex);
|
132
|
+
--symbol: var(--light-symbol);
|
133
|
+
}
|
134
|
+
|
135
|
+
/* Dark mode */
|
136
|
+
.dark-pink,
|
137
|
+
.dark-yellow,
|
138
|
+
.dark-cyan,
|
139
|
+
.dark-blue,
|
140
|
+
.dark-green {
|
141
|
+
--comment: var(--dark-comment);
|
142
|
+
--error: var(--dark-error);
|
143
|
+
--error-bg: var(--dark-error-bg);
|
144
|
+
--keyword: var(--dark-keyword);
|
145
|
+
--operator: var(--dark-operator);
|
146
|
+
--comment-preproc: var(--dark-comment-preproc);
|
147
|
+
--deleted: var(--dark-deleted);
|
148
|
+
--deleted-bg: var(--dark-deleted-bg);
|
149
|
+
--inserted: var(--dark-inserted);
|
150
|
+
--inserted-bg: var(--dark-inserted-bg);
|
151
|
+
--output: var(--dark-output);
|
152
|
+
--prompt: var(--dark-prompt);
|
153
|
+
--strong: var(--dark-strong);
|
154
|
+
--traceback: var(--dark-traceback);
|
155
|
+
--number: var(--dark-number);
|
156
|
+
--string: var(--dark-string);
|
157
|
+
--attribute: var(--dark-attribute);
|
158
|
+
--builtin: var(--dark-builtin);
|
159
|
+
--class: var(--dark-class);
|
160
|
+
--constant: var(--dark-constant);
|
161
|
+
--entity: var(--dark-entity);
|
162
|
+
--exception: var(--dark-exception);
|
163
|
+
--function: var(--dark-function);
|
164
|
+
--namespace: var(--dark-namespace);
|
165
|
+
--tag: var(--dark-tag);
|
166
|
+
--variable: var(--dark-variable);
|
167
|
+
--whitespace: var(--dark-whitespace);
|
168
|
+
--regex: var(--dark-regex);
|
169
|
+
--symbol: var(--dark-symbol);
|
170
|
+
}
|
171
|
+
|
172
|
+
/* Syntax highlighting classes */
|
173
|
+
.c,
|
174
|
+
.cm,
|
175
|
+
.c1 {
|
176
|
+
color: var(--comment);
|
177
|
+
font-style: italic;
|
178
|
+
}
|
179
|
+
.err {
|
180
|
+
color: var(--error);
|
181
|
+
background-color: var(--error-bg);
|
182
|
+
}
|
183
|
+
.k,
|
184
|
+
.kc,
|
185
|
+
.kd,
|
186
|
+
.kp,
|
187
|
+
.kr {
|
188
|
+
font-weight: bold;
|
189
|
+
color: var(--keyword);
|
190
|
+
}
|
191
|
+
.o,
|
192
|
+
.ow {
|
193
|
+
font-weight: bold;
|
194
|
+
color: var(--operator);
|
195
|
+
}
|
196
|
+
.cp {
|
197
|
+
color: var(--comment-preproc);
|
198
|
+
font-weight: bold;
|
199
|
+
}
|
200
|
+
.cs {
|
201
|
+
color: var(--comment);
|
202
|
+
font-weight: bold;
|
203
|
+
font-style: italic;
|
204
|
+
}
|
205
|
+
.gd,
|
206
|
+
.gd .x {
|
207
|
+
color: var(--deleted);
|
208
|
+
background-color: var(--deleted-bg);
|
209
|
+
}
|
210
|
+
.gi,
|
211
|
+
.gi .x {
|
212
|
+
color: var(--inserted);
|
213
|
+
background-color: var(--inserted-bg);
|
214
|
+
}
|
215
|
+
.go {
|
216
|
+
color: var(--output);
|
217
|
+
}
|
218
|
+
.gp {
|
219
|
+
color: var(--prompt);
|
220
|
+
}
|
221
|
+
.gs {
|
222
|
+
font-weight: bold;
|
223
|
+
color: var(--strong);
|
224
|
+
}
|
225
|
+
.gu {
|
226
|
+
color: var(--builtin);
|
227
|
+
}
|
228
|
+
.gt {
|
229
|
+
color: var(--traceback);
|
230
|
+
}
|
231
|
+
.kt {
|
232
|
+
color: var(--class);
|
233
|
+
font-weight: bold;
|
234
|
+
}
|
235
|
+
.m,
|
236
|
+
.mf,
|
237
|
+
.mh,
|
238
|
+
.mi,
|
239
|
+
.mo,
|
240
|
+
.il {
|
241
|
+
color: var(--number);
|
242
|
+
}
|
243
|
+
.s,
|
244
|
+
.sb,
|
245
|
+
.sc,
|
246
|
+
.sd,
|
247
|
+
.s2,
|
248
|
+
.se,
|
249
|
+
.sh,
|
250
|
+
.si,
|
251
|
+
.sx,
|
252
|
+
.s1 {
|
253
|
+
color: var(--string);
|
254
|
+
}
|
255
|
+
.na {
|
256
|
+
color: var(--attribute);
|
257
|
+
}
|
258
|
+
.nb {
|
259
|
+
color: var(--builtin);
|
260
|
+
}
|
261
|
+
.nc {
|
262
|
+
color: var(--class);
|
263
|
+
font-weight: bold;
|
264
|
+
}
|
265
|
+
.no {
|
266
|
+
color: var(--constant);
|
267
|
+
}
|
268
|
+
.ni {
|
269
|
+
color: var(--entity);
|
270
|
+
}
|
271
|
+
.ne {
|
272
|
+
color: var(--exception);
|
273
|
+
font-weight: bold;
|
274
|
+
}
|
275
|
+
.nf {
|
276
|
+
color: var(--function);
|
277
|
+
font-weight: bold;
|
278
|
+
}
|
279
|
+
.nn {
|
280
|
+
color: var(--namespace);
|
281
|
+
}
|
282
|
+
.nt {
|
283
|
+
color: var(--tag);
|
284
|
+
}
|
285
|
+
.nv,
|
286
|
+
.vc,
|
287
|
+
.vg,
|
288
|
+
.vi {
|
289
|
+
color: var(--variable);
|
290
|
+
}
|
291
|
+
.w {
|
292
|
+
color: var(--whitespace);
|
293
|
+
}
|
294
|
+
.sr {
|
295
|
+
color: var(--regex);
|
296
|
+
}
|
297
|
+
.ss {
|
298
|
+
color: var(--symbol);
|
68
299
|
}
|
data/_sass/minima.scss
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
$base-font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI",
|
5
5
|
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
6
6
|
"Segoe UI Symbol" !default;
|
7
|
-
$base-font-size:
|
7
|
+
$base-font-size: 17px !default;
|
8
8
|
$base-font-weight: 400 !default;
|
9
9
|
$small-font-size: $base-font-size * 0.875 !default;
|
10
10
|
$base-line-height: 1.5 !default;
|