@wenyan-md/core 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.
- package/LICENSE +201 -0
- package/README.md +3 -0
- package/dist/atom-one-dark.min-hABhDLRj.js +5 -0
- package/dist/atom-one-dark.min-hABhDLRj.js.map +1 -0
- package/dist/atom-one-light.min-CwiVhPEv.js +5 -0
- package/dist/atom-one-light.min-CwiVhPEv.js.map +1 -0
- package/dist/core.js +428 -0
- package/dist/core.js.map +1 -0
- package/dist/default-D-dyLptq.js +185 -0
- package/dist/default-D-dyLptq.js.map +1 -0
- package/dist/dracula.min-OeyC4Nkp.js +12 -0
- package/dist/dracula.min-OeyC4Nkp.js.map +1 -0
- package/dist/github-dark.min-DOlD5Ewr.js +14 -0
- package/dist/github-dark.min-DOlD5Ewr.js.map +1 -0
- package/dist/github.min-BZ2GvPsn.js +15 -0
- package/dist/github.min-BZ2GvPsn.js.map +1 -0
- package/dist/lapis-dRySN5pK.js +195 -0
- package/dist/lapis-dRySN5pK.js.map +1 -0
- package/dist/maize-DFW0x6O3.js +195 -0
- package/dist/maize-DFW0x6O3.js.map +1 -0
- package/dist/monokai.min-CH2iHqHz.js +5 -0
- package/dist/monokai.min-CH2iHqHz.js.map +1 -0
- package/dist/orangeheart-Da7uQj8U.js +185 -0
- package/dist/orangeheart-Da7uQj8U.js.map +1 -0
- package/dist/phycat-BGGT9oBk.js +336 -0
- package/dist/phycat-BGGT9oBk.js.map +1 -0
- package/dist/pie-DUYodGli.js +241 -0
- package/dist/pie-DUYodGli.js.map +1 -0
- package/dist/publish.js +360 -0
- package/dist/publish.js.map +1 -0
- package/dist/purple-Da1-Vfos.js +184 -0
- package/dist/purple-Da1-Vfos.js.map +1 -0
- package/dist/rainbow-BtrbZco6.js +168 -0
- package/dist/rainbow-BtrbZco6.js.map +1 -0
- package/dist/solarized-dark.min-BxbYljx4.js +12 -0
- package/dist/solarized-dark.min-BxbYljx4.js.map +1 -0
- package/dist/solarized-light.min-Bb25xgOC.js +12 -0
- package/dist/solarized-light.min-Bb25xgOC.js.map +1 -0
- package/dist/types/hltheme.d.ts +6 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/publish.d.ts +1 -0
- package/dist/types/theme.d.ts +8 -0
- package/dist/xcode.min-CG-lWQgl.js +5 -0
- package/dist/xcode.min-CG-lWQgl.js.map +1 -0
- package/package.json +44 -0
|
@@ -0,0 +1,336 @@
|
|
|
1
|
+
const n = `/*
|
|
2
|
+
* Typora Theme - Phycat / Author - sumruler
|
|
3
|
+
* https://github.com/sumruler/typora-theme-phycat
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
/* 标题后小图标,借鉴自思源笔记主题——Savor */
|
|
8
|
+
--h1-r-graphic: url("https://cdn.phycat.cn/img/mdicon/green/h1_icon.svg")
|
|
9
|
+
no-repeat center;
|
|
10
|
+
--h2-r-graphic: url("https://cdn.phycat.cn/img/mdicon/green/h2_icon.svg")
|
|
11
|
+
no-repeat center;
|
|
12
|
+
--h3-r-graphic: url("https://cdn.phycat.cn/img/mdicon/green/h3_icon.svg")
|
|
13
|
+
no-repeat center;
|
|
14
|
+
--h4-r-graphic: url("https://cdn.phycat.cn/img/mdicon/green/h4_icon.svg")
|
|
15
|
+
no-repeat center;
|
|
16
|
+
--h5-r-graphic: url("https://cdn.phycat.cn/img/mdicon/green/h5_icon.svg")
|
|
17
|
+
no-repeat center;
|
|
18
|
+
--h6-r-graphic: url("https://cdn.phycat.cn/img/mdicon/green/h6_icon.svg")
|
|
19
|
+
no-repeat center;
|
|
20
|
+
|
|
21
|
+
/* 是否开启网格背景?1 是;0 否 */
|
|
22
|
+
--bg-grid: 0;
|
|
23
|
+
|
|
24
|
+
/* 主题颜色 */
|
|
25
|
+
|
|
26
|
+
--head-title-color: #3db8bf;
|
|
27
|
+
/* 标题主色 */
|
|
28
|
+
--head-title-h2-color: #fff;
|
|
29
|
+
--head-title-h2-background: linear-gradient(to right, #3db8d3, #80f7c4);
|
|
30
|
+
/* 二级标题主色,因为二级标题是背景色的,所以单独设置 */
|
|
31
|
+
|
|
32
|
+
--element-color: #3db8bf;
|
|
33
|
+
/* 元素主色 */
|
|
34
|
+
--element-color-deep: #089ba3;
|
|
35
|
+
/* 元素深色 */
|
|
36
|
+
--element-color-shallow: #7aeaf0;
|
|
37
|
+
/* 元素浅色 */
|
|
38
|
+
--element-color-so-shallow: #7aeaf077;
|
|
39
|
+
/* 元素很浅色 */
|
|
40
|
+
--element-color-soo-shallow: #7aeaf018;
|
|
41
|
+
/* 元素非常浅色 */
|
|
42
|
+
|
|
43
|
+
--element-color-linecode: #089ba3;
|
|
44
|
+
/* 行内代码文字色 */
|
|
45
|
+
--element-color-linecode-background: #7aeaf018;
|
|
46
|
+
/* 行内代码背景色 */
|
|
47
|
+
}
|
|
48
|
+
#wenyan {
|
|
49
|
+
font-size: 14px;
|
|
50
|
+
font-family:var(--sans-serif-font);
|
|
51
|
+
margin: 0 auto;
|
|
52
|
+
padding: 15px;
|
|
53
|
+
line-height: 1.75;
|
|
54
|
+
color: #000;
|
|
55
|
+
letter-spacing: 1.1px;
|
|
56
|
+
word-break: break-word;
|
|
57
|
+
word-wrap: break-word;
|
|
58
|
+
text-align: left;
|
|
59
|
+
background-image: linear-gradient(90deg,
|
|
60
|
+
rgba(50, 0, 0, 0.05) calc(3% * var(--bg-grid)),
|
|
61
|
+
rgba(0, 0, 0, 0) calc(3% * var(--bg-grid))),
|
|
62
|
+
linear-gradient(360deg,
|
|
63
|
+
rgba(50, 0, 0, 0.05) calc(3% * var(--bg-grid)),
|
|
64
|
+
rgba(0, 0, 0, 0) calc(3% * var(--bg-grid)));
|
|
65
|
+
background-size: 20px 20px;
|
|
66
|
+
background-position: center center;
|
|
67
|
+
}
|
|
68
|
+
#wenyan p {
|
|
69
|
+
text-align:justify;
|
|
70
|
+
color: #333;
|
|
71
|
+
margin: 10px 10px;
|
|
72
|
+
word-spacing: 2px;
|
|
73
|
+
}
|
|
74
|
+
#wenyan h3::after,
|
|
75
|
+
#wenyan h4::after,
|
|
76
|
+
#wenyan h5::after,
|
|
77
|
+
#wenyan h6::after {
|
|
78
|
+
content: '';
|
|
79
|
+
margin-left: 0.2em;
|
|
80
|
+
height: 2em;
|
|
81
|
+
width: 1.2em;
|
|
82
|
+
}
|
|
83
|
+
#wenyan h3::after {
|
|
84
|
+
background: var(--h3-r-graphic);
|
|
85
|
+
background-position-y: -2px;
|
|
86
|
+
}
|
|
87
|
+
#wenyan h4::after {
|
|
88
|
+
background: var(--h4-r-graphic);
|
|
89
|
+
background-position-y: -2px;
|
|
90
|
+
}
|
|
91
|
+
#wenyan h5::after {
|
|
92
|
+
background: var(--h5-r-graphic);
|
|
93
|
+
background-position-y: -1px;
|
|
94
|
+
}
|
|
95
|
+
#wenyan h6::after {
|
|
96
|
+
background: var(--h6-r-graphic);
|
|
97
|
+
background-position-y: -1px;
|
|
98
|
+
}
|
|
99
|
+
#wenyan h1 {
|
|
100
|
+
text-align: center;
|
|
101
|
+
font-weight: bold;
|
|
102
|
+
font-size: 1.4em;
|
|
103
|
+
}
|
|
104
|
+
#wenyan h2 {
|
|
105
|
+
color: var(--head-title-h2-color);
|
|
106
|
+
font-size: 1.4em;
|
|
107
|
+
line-height: 1.6;
|
|
108
|
+
width: fit-content;
|
|
109
|
+
font-weight: bold;
|
|
110
|
+
margin: 20px 0 5px;
|
|
111
|
+
padding: 1px 12.5px;
|
|
112
|
+
border-radius: 4px;
|
|
113
|
+
background: var(--head-title-h2-background);
|
|
114
|
+
background-size: 200% 100%;
|
|
115
|
+
background-position: 0% 0%;
|
|
116
|
+
transition: all ease-in-out 0.1s;
|
|
117
|
+
}
|
|
118
|
+
#wenyan h3,h4,h5,h6{
|
|
119
|
+
font-weight: bold;
|
|
120
|
+
display: flex;
|
|
121
|
+
align-items: top;
|
|
122
|
+
}
|
|
123
|
+
#wenyan h3 {
|
|
124
|
+
width: fit-content;
|
|
125
|
+
margin: 20px 0 5px;
|
|
126
|
+
font-size: 1.3em;
|
|
127
|
+
padding-left: 10px;
|
|
128
|
+
border-left: 5px solid var(--head-title-color);
|
|
129
|
+
}
|
|
130
|
+
#wenyan h3 span {
|
|
131
|
+
border-bottom: 2px hidden var(--head-title-color);
|
|
132
|
+
}
|
|
133
|
+
#wenyan h4 {
|
|
134
|
+
margin: 20px 0 5px;
|
|
135
|
+
font-size: 1.15em;
|
|
136
|
+
}
|
|
137
|
+
#wenyan h4::before {
|
|
138
|
+
content: '';
|
|
139
|
+
margin-right: 7px;
|
|
140
|
+
margin-top: 8px;
|
|
141
|
+
background-color: var(--head-title-color);
|
|
142
|
+
width: 10px;
|
|
143
|
+
height: 10px;
|
|
144
|
+
border-radius: 100%;
|
|
145
|
+
border: var(--head-title-color) 1px solid;
|
|
146
|
+
}
|
|
147
|
+
#wenyan h5 {
|
|
148
|
+
margin: 20px 0 5px;
|
|
149
|
+
font-size: 1.1em;
|
|
150
|
+
}
|
|
151
|
+
#wenyan h5::before {
|
|
152
|
+
content: '';
|
|
153
|
+
margin-right: 7px;
|
|
154
|
+
margin-top: 8px;
|
|
155
|
+
display: inline-block;
|
|
156
|
+
background-color: #ffffff;
|
|
157
|
+
width: 10px;
|
|
158
|
+
height: 10px;
|
|
159
|
+
border-radius: 100%;
|
|
160
|
+
border: var(--head-title-color) 2px solid;
|
|
161
|
+
}
|
|
162
|
+
#wenyan h6 {
|
|
163
|
+
margin: 20px 0 5px;
|
|
164
|
+
font-size: 1.1em;
|
|
165
|
+
}
|
|
166
|
+
#wenyan h6::before {
|
|
167
|
+
content: '⁘';
|
|
168
|
+
color: var(--head-title-color);
|
|
169
|
+
margin-right: 7px;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
#wenyan ol {
|
|
173
|
+
margin-left: 2px;
|
|
174
|
+
padding-left: 12px;
|
|
175
|
+
margin-bottom: 0px;
|
|
176
|
+
margin-top: 0px;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
#wenyan ul {
|
|
180
|
+
list-style-type: disc;
|
|
181
|
+
margin-bottom: 0px;
|
|
182
|
+
margin-top: 0px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
#wenyan ul ul {
|
|
186
|
+
list-style-type: circle;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
#wenyan ul ul ul {
|
|
190
|
+
list-style-type: square;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
#wenyan ol {
|
|
194
|
+
padding-left: 27px;
|
|
195
|
+
list-style-type: decimal;
|
|
196
|
+
}
|
|
197
|
+
#wenyan ol ol {
|
|
198
|
+
list-style-type: lower-alpha;
|
|
199
|
+
}
|
|
200
|
+
#wenyan ol ol ol {
|
|
201
|
+
list-style-type: lower-roman;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
#wenyan li {
|
|
205
|
+
color: #333;
|
|
206
|
+
margin: 0px 6px;
|
|
207
|
+
word-spacing: 2px;
|
|
208
|
+
line-height: 2.5;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
#wenyan li {
|
|
212
|
+
position: relative;
|
|
213
|
+
}
|
|
214
|
+
#wenyan li > p{
|
|
215
|
+
margin:0;
|
|
216
|
+
}
|
|
217
|
+
#wenyan blockquote {
|
|
218
|
+
font-size:12px;
|
|
219
|
+
margin-left: 12px;
|
|
220
|
+
text-align:justify;
|
|
221
|
+
padding: 12px;
|
|
222
|
+
background: var(--element-color-soo-shallow);
|
|
223
|
+
border: 0px solid var(--element-color);
|
|
224
|
+
border-left-color: var(--element-color);
|
|
225
|
+
border-left-width: 4px;
|
|
226
|
+
border-radius: 4px;
|
|
227
|
+
line-height: 26px;
|
|
228
|
+
}
|
|
229
|
+
#wenyan blockquote p {
|
|
230
|
+
color: #000;
|
|
231
|
+
}
|
|
232
|
+
#wenyan a {
|
|
233
|
+
color: #000;
|
|
234
|
+
font-weight: bolder;
|
|
235
|
+
text-decoration: none;
|
|
236
|
+
border-bottom: 1px solid #3db8bf;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
#wenyan strong {
|
|
240
|
+
color: #000;
|
|
241
|
+
font-weight: bold;
|
|
242
|
+
}
|
|
243
|
+
#wenyan em {
|
|
244
|
+
font-style: italic;
|
|
245
|
+
color: #000;
|
|
246
|
+
}
|
|
247
|
+
#wenyan del {
|
|
248
|
+
text-decoration-color: var(--element-color-deep);
|
|
249
|
+
}
|
|
250
|
+
#wenyan hr {
|
|
251
|
+
height: 1px;
|
|
252
|
+
padding: 0;
|
|
253
|
+
border: none;
|
|
254
|
+
border-top: 2px solid var(--head-title-color);
|
|
255
|
+
}
|
|
256
|
+
#wenyan img {
|
|
257
|
+
max-width: 90%;
|
|
258
|
+
display:block;
|
|
259
|
+
border-radius: 6px;
|
|
260
|
+
margin: 10px auto;
|
|
261
|
+
object-fit: contain;
|
|
262
|
+
}
|
|
263
|
+
#wenyan p code {
|
|
264
|
+
padding: 3px 3px 1px;
|
|
265
|
+
color: var(--element-color-linecode);
|
|
266
|
+
background: var(--element-color-linecode-background);
|
|
267
|
+
border-radius: 3px;
|
|
268
|
+
font-family: var(--monospace-font);
|
|
269
|
+
letter-spacing: 0.5px;
|
|
270
|
+
}
|
|
271
|
+
#wenyan li code {
|
|
272
|
+
color: var(--element-color-linecode);
|
|
273
|
+
}
|
|
274
|
+
#wenyan pre {
|
|
275
|
+
border-radius: 5px;
|
|
276
|
+
line-height: 2;
|
|
277
|
+
margin: 1em 0.5em;
|
|
278
|
+
padding: .5em;
|
|
279
|
+
box-shadow: rgba(0, 0, 0, 0.55) 0px 1px 5px;
|
|
280
|
+
}
|
|
281
|
+
#wenyan pre code {
|
|
282
|
+
font-family: var(--monospace-font);
|
|
283
|
+
display: block;
|
|
284
|
+
overflow-x: auto;
|
|
285
|
+
margin: .5em;
|
|
286
|
+
padding: 0;
|
|
287
|
+
}
|
|
288
|
+
#wenyan table {
|
|
289
|
+
border-collapse: collapse;
|
|
290
|
+
margin: 1.4em auto;
|
|
291
|
+
max-width: 100%;
|
|
292
|
+
table-layout: fixed;
|
|
293
|
+
text-align: left;
|
|
294
|
+
overflow: auto;
|
|
295
|
+
display: table;
|
|
296
|
+
word-wrap: break-word;
|
|
297
|
+
word-break: break-all;
|
|
298
|
+
}
|
|
299
|
+
#wenyan table td,
|
|
300
|
+
#wenyan table th {
|
|
301
|
+
font-size: 10px;
|
|
302
|
+
padding: 9px 12px;
|
|
303
|
+
line-height: 22px;
|
|
304
|
+
color: #222;
|
|
305
|
+
border: 1px solid var(--element-color-deep);
|
|
306
|
+
vertical-align: top;
|
|
307
|
+
}
|
|
308
|
+
#wenyan table th {
|
|
309
|
+
font-weight: bold;
|
|
310
|
+
background-color: var(--element-color-soo-shallow);
|
|
311
|
+
color: var(--element-color-deep);
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
#wenyan .footnote {
|
|
315
|
+
color: var(--primary-color);
|
|
316
|
+
}
|
|
317
|
+
#wenyan #footnotes p {
|
|
318
|
+
display: flex;
|
|
319
|
+
margin: 0;
|
|
320
|
+
font-size: 0.9em;
|
|
321
|
+
}
|
|
322
|
+
#wenyan .footnote-num {
|
|
323
|
+
display: inline;
|
|
324
|
+
width: 10%;
|
|
325
|
+
}
|
|
326
|
+
#wenyan .footnote-txt {
|
|
327
|
+
display: inline;
|
|
328
|
+
width: 90%;
|
|
329
|
+
word-wrap: break-word;
|
|
330
|
+
word-break: break-all;
|
|
331
|
+
}
|
|
332
|
+
`;
|
|
333
|
+
export {
|
|
334
|
+
n as default
|
|
335
|
+
};
|
|
336
|
+
//# sourceMappingURL=phycat-BGGT9oBk.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"phycat-BGGT9oBk.js","sources":["../src/themes/phycat.css?raw"],"sourcesContent":["export default \"/*\\n * Typora Theme - Phycat / Author - sumruler\\n * https://github.com/sumruler/typora-theme-phycat\\n */\\n\\n :root {\\n /* 标题后小图标,借鉴自思源笔记主题——Savor */\\n --h1-r-graphic: url(\\\"https://cdn.phycat.cn/img/mdicon/green/h1_icon.svg\\\")\\n no-repeat center;\\n --h2-r-graphic: url(\\\"https://cdn.phycat.cn/img/mdicon/green/h2_icon.svg\\\")\\n no-repeat center;\\n --h3-r-graphic: url(\\\"https://cdn.phycat.cn/img/mdicon/green/h3_icon.svg\\\")\\n no-repeat center;\\n --h4-r-graphic: url(\\\"https://cdn.phycat.cn/img/mdicon/green/h4_icon.svg\\\")\\n no-repeat center;\\n --h5-r-graphic: url(\\\"https://cdn.phycat.cn/img/mdicon/green/h5_icon.svg\\\")\\n no-repeat center;\\n --h6-r-graphic: url(\\\"https://cdn.phycat.cn/img/mdicon/green/h6_icon.svg\\\")\\n no-repeat center;\\n\\n /* 是否开启网格背景?1 是;0 否 */\\n --bg-grid: 0;\\n\\n /* 主题颜色 */\\n\\n --head-title-color: #3db8bf;\\n /* 标题主色 */\\n --head-title-h2-color: #fff;\\n --head-title-h2-background: linear-gradient(to right, #3db8d3, #80f7c4);\\n /* 二级标题主色,因为二级标题是背景色的,所以单独设置 */\\n\\n --element-color: #3db8bf;\\n /* 元素主色 */\\n --element-color-deep: #089ba3;\\n /* 元素深色 */\\n --element-color-shallow: #7aeaf0;\\n /* 元素浅色 */\\n --element-color-so-shallow: #7aeaf077;\\n /* 元素很浅色 */\\n --element-color-soo-shallow: #7aeaf018;\\n /* 元素非常浅色 */\\n\\n --element-color-linecode: #089ba3;\\n /* 行内代码文字色 */\\n --element-color-linecode-background: #7aeaf018;\\n /* 行内代码背景色 */\\n}\\n#wenyan {\\n font-size: 14px;\\n font-family:var(--sans-serif-font);\\n margin: 0 auto;\\n padding: 15px;\\n line-height: 1.75;\\n color: #000;\\n letter-spacing: 1.1px;\\n word-break: break-word;\\n word-wrap: break-word;\\n text-align: left;\\n background-image: linear-gradient(90deg,\\n rgba(50, 0, 0, 0.05) calc(3% * var(--bg-grid)),\\n rgba(0, 0, 0, 0) calc(3% * var(--bg-grid))),\\n linear-gradient(360deg,\\n rgba(50, 0, 0, 0.05) calc(3% * var(--bg-grid)),\\n rgba(0, 0, 0, 0) calc(3% * var(--bg-grid)));\\n background-size: 20px 20px;\\n background-position: center center;\\n}\\n#wenyan p {\\n text-align:justify;\\n color: #333;\\n margin: 10px 10px;\\n word-spacing: 2px;\\n}\\n#wenyan h3::after,\\n#wenyan h4::after,\\n#wenyan h5::after,\\n#wenyan h6::after {\\n content: '';\\n margin-left: 0.2em;\\n height: 2em;\\n width: 1.2em;\\n}\\n#wenyan h3::after {\\n background: var(--h3-r-graphic);\\n background-position-y: -2px;\\n}\\n#wenyan h4::after {\\n background: var(--h4-r-graphic);\\n background-position-y: -2px;\\n}\\n#wenyan h5::after {\\n background: var(--h5-r-graphic);\\n background-position-y: -1px;\\n}\\n#wenyan h6::after {\\n background: var(--h6-r-graphic);\\n background-position-y: -1px;\\n}\\n#wenyan h1 {\\n text-align: center;\\n font-weight: bold;\\n font-size: 1.4em;\\n}\\n#wenyan h2 {\\n color: var(--head-title-h2-color);\\n font-size: 1.4em;\\n line-height: 1.6;\\n width: fit-content;\\n font-weight: bold;\\n margin: 20px 0 5px;\\n padding: 1px 12.5px;\\n border-radius: 4px;\\n background: var(--head-title-h2-background);\\n background-size: 200% 100%;\\n background-position: 0% 0%;\\n transition: all ease-in-out 0.1s;\\n}\\n#wenyan h3,h4,h5,h6{\\n font-weight: bold;\\n display: flex;\\n align-items: top;\\n}\\n#wenyan h3 {\\n width: fit-content;\\n margin: 20px 0 5px;\\n font-size: 1.3em;\\n padding-left: 10px;\\n border-left: 5px solid var(--head-title-color);\\n}\\n#wenyan h3 span {\\n border-bottom: 2px hidden var(--head-title-color);\\n}\\n#wenyan h4 {\\n margin: 20px 0 5px;\\n font-size: 1.15em;\\n}\\n#wenyan h4::before {\\n content: '';\\n margin-right: 7px;\\n margin-top: 8px;\\n background-color: var(--head-title-color);\\n width: 10px;\\n height: 10px;\\n border-radius: 100%;\\n border: var(--head-title-color) 1px solid;\\n}\\n#wenyan h5 {\\n margin: 20px 0 5px;\\n font-size: 1.1em;\\n}\\n#wenyan h5::before {\\n content: '';\\n margin-right: 7px;\\n margin-top: 8px;\\n display: inline-block;\\n background-color: #ffffff;\\n width: 10px;\\n height: 10px;\\n border-radius: 100%;\\n border: var(--head-title-color) 2px solid;\\n}\\n#wenyan h6 {\\n margin: 20px 0 5px;\\n font-size: 1.1em;\\n}\\n#wenyan h6::before {\\n content: '⁘';\\n color: var(--head-title-color);\\n margin-right: 7px;\\n}\\n\\n#wenyan ol {\\n margin-left: 2px;\\n padding-left: 12px;\\n margin-bottom: 0px;\\n margin-top: 0px;\\n}\\n\\n#wenyan ul {\\n list-style-type: disc;\\n margin-bottom: 0px;\\n margin-top: 0px;\\n}\\n\\n#wenyan ul ul {\\n list-style-type: circle;\\n}\\n\\n#wenyan ul ul ul {\\n list-style-type: square;\\n}\\n\\n#wenyan ol {\\n padding-left: 27px;\\n list-style-type: decimal;\\n}\\n#wenyan ol ol {\\n list-style-type: lower-alpha;\\n}\\n#wenyan ol ol ol {\\n list-style-type: lower-roman;\\n}\\n\\n#wenyan li {\\n color: #333;\\n margin: 0px 6px;\\n word-spacing: 2px;\\n line-height: 2.5;\\n}\\n\\n#wenyan li {\\n position: relative;\\n}\\n#wenyan li > p{\\n margin:0;\\n}\\n#wenyan blockquote {\\n font-size:12px;\\n margin-left: 12px;\\n text-align:justify;\\n padding: 12px;\\n background: var(--element-color-soo-shallow);\\n border: 0px solid var(--element-color);\\n border-left-color: var(--element-color);\\n border-left-width: 4px;\\n border-radius: 4px;\\n line-height: 26px;\\n}\\n#wenyan blockquote p {\\n color: #000;\\n}\\n#wenyan a {\\n color: #000;\\n font-weight: bolder;\\n text-decoration: none;\\n border-bottom: 1px solid #3db8bf;\\n}\\n\\n#wenyan strong {\\n color: #000;\\n font-weight: bold;\\n}\\n#wenyan em {\\n font-style: italic;\\n color: #000;\\n}\\n#wenyan del {\\n text-decoration-color: var(--element-color-deep);\\n}\\n#wenyan hr {\\n height: 1px;\\n padding: 0;\\n border: none;\\n border-top: 2px solid var(--head-title-color);\\n}\\n#wenyan img {\\n max-width: 90%;\\n display:block;\\n border-radius: 6px;\\n margin: 10px auto;\\n object-fit: contain;\\n}\\n#wenyan p code {\\n padding: 3px 3px 1px;\\n color: var(--element-color-linecode);\\n background: var(--element-color-linecode-background);\\n border-radius: 3px;\\n font-family: var(--monospace-font);\\n letter-spacing: 0.5px;\\n}\\n#wenyan li code {\\n color: var(--element-color-linecode);\\n}\\n#wenyan pre {\\n border-radius: 5px;\\n line-height: 2;\\n margin: 1em 0.5em;\\n padding: .5em;\\n box-shadow: rgba(0, 0, 0, 0.55) 0px 1px 5px;\\n}\\n#wenyan pre code {\\n font-family: var(--monospace-font);\\n display: block;\\n overflow-x: auto;\\n margin: .5em;\\n padding: 0;\\n}\\n#wenyan table {\\n border-collapse: collapse;\\n margin: 1.4em auto;\\n max-width: 100%;\\n table-layout: fixed;\\n text-align: left;\\n overflow: auto;\\n display: table;\\n word-wrap: break-word;\\n word-break: break-all;\\n}\\n#wenyan table td,\\n#wenyan table th {\\n font-size: 10px;\\n padding: 9px 12px;\\n line-height: 22px;\\n color: #222;\\n border: 1px solid var(--element-color-deep);\\n vertical-align: top;\\n}\\n#wenyan table th {\\n font-weight: bold;\\n background-color: var(--element-color-soo-shallow);\\n color: var(--element-color-deep);\\n}\\n\\n#wenyan .footnote {\\n color: var(--primary-color);\\n}\\n#wenyan #footnotes p {\\n display: flex;\\n margin: 0;\\n font-size: 0.9em;\\n}\\n#wenyan .footnote-num {\\n display: inline;\\n width: 10%;\\n}\\n#wenyan .footnote-txt {\\n display: inline;\\n width: 90%;\\n word-wrap: break-word;\\n word-break: break-all;\\n}\\n\""],"names":["phycat"],"mappings":"AAAA,MAAAA,IAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
const n = `/*
|
|
2
|
+
* Typora Theme - Pie / Author - kevinzhao2233
|
|
3
|
+
* https://github.com/kevinzhao2233/typora-theme-pie
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
:root {
|
|
7
|
+
--mid-1: #ffffff;
|
|
8
|
+
--mid-7: #8c8c8c;
|
|
9
|
+
--mid-9: #434343;
|
|
10
|
+
--mid-10: #262626;
|
|
11
|
+
--main-1: #fff2f0;
|
|
12
|
+
--main-4: #f27f79;
|
|
13
|
+
--main-5: #e6514e;
|
|
14
|
+
--main-6: #da282a;
|
|
15
|
+
}
|
|
16
|
+
#wenyan {
|
|
17
|
+
font-family: var(--sans-serif-font);
|
|
18
|
+
line-height: 1.75;
|
|
19
|
+
color: var(--mid-10);
|
|
20
|
+
letter-spacing: 0;
|
|
21
|
+
font-size: 16px;
|
|
22
|
+
}
|
|
23
|
+
#wenyan p,
|
|
24
|
+
#wenyan pre {
|
|
25
|
+
margin: 1em 0.8em;
|
|
26
|
+
}
|
|
27
|
+
#wenyan p {
|
|
28
|
+
word-spacing: 0.05rem;
|
|
29
|
+
text-align: justify;
|
|
30
|
+
}
|
|
31
|
+
#wenyan a {
|
|
32
|
+
word-wrap: break-word;
|
|
33
|
+
color: var(--main-6);
|
|
34
|
+
text-decoration: none;
|
|
35
|
+
border-bottom: 1px solid var(--main-6);
|
|
36
|
+
transition: border-bottom 0.2s;
|
|
37
|
+
padding: 0 2px;
|
|
38
|
+
font-weight: 500;
|
|
39
|
+
text-decoration: none;
|
|
40
|
+
}
|
|
41
|
+
#wenyan h1,
|
|
42
|
+
#wenyan h2,
|
|
43
|
+
#wenyan h3,
|
|
44
|
+
#wenyan h4,
|
|
45
|
+
#wenyan h5,
|
|
46
|
+
#wenyan h6 {
|
|
47
|
+
position: relative;
|
|
48
|
+
margin: 1.2em 0 1em;
|
|
49
|
+
padding: 0px;
|
|
50
|
+
font-weight: bold;
|
|
51
|
+
cursor: text;
|
|
52
|
+
}
|
|
53
|
+
#wenyan h2 a,
|
|
54
|
+
#wenyan h3 a {
|
|
55
|
+
color: var(--mid-9);
|
|
56
|
+
}
|
|
57
|
+
#wenyan h1 {
|
|
58
|
+
font-size: 1.5em;
|
|
59
|
+
text-align: center;
|
|
60
|
+
}
|
|
61
|
+
#wenyan h1::after {
|
|
62
|
+
display: block;
|
|
63
|
+
width: 100px;
|
|
64
|
+
height: 2px;
|
|
65
|
+
margin: 0.2em auto 0;
|
|
66
|
+
content: "";
|
|
67
|
+
border-bottom: 2px dashed var(--main-6);
|
|
68
|
+
}
|
|
69
|
+
#wenyan h2 {
|
|
70
|
+
padding-left: 6px;
|
|
71
|
+
margin: 2em auto 1.4em;
|
|
72
|
+
font-size: 1.3em;
|
|
73
|
+
border-left: 6px solid var(--main-6);
|
|
74
|
+
}
|
|
75
|
+
#wenyan h3 {
|
|
76
|
+
font-size: 1.2em;
|
|
77
|
+
}
|
|
78
|
+
#wenyan h3::before {
|
|
79
|
+
display: inline-block;
|
|
80
|
+
width: 6px;
|
|
81
|
+
height: 6px;
|
|
82
|
+
margin-right: 6px;
|
|
83
|
+
margin-bottom: 0.18em;
|
|
84
|
+
line-height: 1.43;
|
|
85
|
+
vertical-align: middle;
|
|
86
|
+
content: "";
|
|
87
|
+
background-color: var(--main-5);
|
|
88
|
+
border-radius: 50%;
|
|
89
|
+
}
|
|
90
|
+
#wenyan h4 {
|
|
91
|
+
font-size: 1.2em;
|
|
92
|
+
}
|
|
93
|
+
#wenyan h4::before {
|
|
94
|
+
display: inline-block;
|
|
95
|
+
width: 6px;
|
|
96
|
+
height: 2px;
|
|
97
|
+
margin-right: 8px;
|
|
98
|
+
margin-bottom: 0.18em;
|
|
99
|
+
vertical-align: middle;
|
|
100
|
+
content: "";
|
|
101
|
+
background-color: var(--main-4);
|
|
102
|
+
}
|
|
103
|
+
#wenyan h5 {
|
|
104
|
+
font-size: 1.2em;
|
|
105
|
+
}
|
|
106
|
+
#wenyan h6 {
|
|
107
|
+
font-size: 1.2em;
|
|
108
|
+
color: var(--mid-7);
|
|
109
|
+
}
|
|
110
|
+
#wenyan li > ol,
|
|
111
|
+
#wenyan li > ul {
|
|
112
|
+
margin: 0;
|
|
113
|
+
}
|
|
114
|
+
#wenyan hr {
|
|
115
|
+
box-sizing: content-box;
|
|
116
|
+
width: 100%;
|
|
117
|
+
height: 1px;
|
|
118
|
+
padding: 0;
|
|
119
|
+
margin: 46px auto 64px;
|
|
120
|
+
overflow: hidden;
|
|
121
|
+
background-color: var(--main-4);
|
|
122
|
+
border: 0;
|
|
123
|
+
}
|
|
124
|
+
#wenyan blockquote {
|
|
125
|
+
position: relative;
|
|
126
|
+
padding: 24px 16px 12px;
|
|
127
|
+
margin: 24px 0 36px;
|
|
128
|
+
font-size: 1em;
|
|
129
|
+
font-style: normal;
|
|
130
|
+
line-height: 1.6;
|
|
131
|
+
color: var(--mid-7);
|
|
132
|
+
text-indent: 0;
|
|
133
|
+
border: none;
|
|
134
|
+
border-left: 2px solid var(--main-6);
|
|
135
|
+
}
|
|
136
|
+
#wenyan blockquote blockquote {
|
|
137
|
+
padding-right: 0;
|
|
138
|
+
}
|
|
139
|
+
#wenyan blockquote a {
|
|
140
|
+
color: var(--mid-7);
|
|
141
|
+
}
|
|
142
|
+
#wenyan blockquote::before {
|
|
143
|
+
position: absolute;
|
|
144
|
+
top: 0;
|
|
145
|
+
left: 12px;
|
|
146
|
+
font-family: Arial, serif;
|
|
147
|
+
font-size: 2em;
|
|
148
|
+
font-weight: 700;
|
|
149
|
+
line-height: 1em;
|
|
150
|
+
color: var(--main-6);
|
|
151
|
+
content: "“";
|
|
152
|
+
}
|
|
153
|
+
#wenyan table {
|
|
154
|
+
border-collapse: collapse;
|
|
155
|
+
margin: 1.4em auto;
|
|
156
|
+
max-width: 100%;
|
|
157
|
+
table-layout: fixed;
|
|
158
|
+
text-align: left;
|
|
159
|
+
overflow: auto;
|
|
160
|
+
display: table;
|
|
161
|
+
word-wrap: break-word;
|
|
162
|
+
word-break: break-all;
|
|
163
|
+
}
|
|
164
|
+
#wenyan table td,
|
|
165
|
+
#wenyan table th {
|
|
166
|
+
font-size: 0.75em;
|
|
167
|
+
padding: 9px 12px;
|
|
168
|
+
line-height: 22px;
|
|
169
|
+
vertical-align: top;
|
|
170
|
+
border: 1px solid var(--main-4);
|
|
171
|
+
}
|
|
172
|
+
#wenyan table th {
|
|
173
|
+
font-weight: bold;
|
|
174
|
+
color: var(--main-6);
|
|
175
|
+
background-color: var(--main-1);
|
|
176
|
+
}
|
|
177
|
+
#wenyan strong {
|
|
178
|
+
padding: 0 1px;
|
|
179
|
+
}
|
|
180
|
+
#wenyan em {
|
|
181
|
+
padding: 0 5px 0 2px;
|
|
182
|
+
}
|
|
183
|
+
#wenyan p code {
|
|
184
|
+
padding: 2px 4px 1px;
|
|
185
|
+
margin: 0 2px;
|
|
186
|
+
font-family: var(--monospace-font);
|
|
187
|
+
font-size: 0.92rem;
|
|
188
|
+
color: var(--main-5);
|
|
189
|
+
background-color: var(--main-1);
|
|
190
|
+
border-radius: 3px;
|
|
191
|
+
}
|
|
192
|
+
#wenyan p code {
|
|
193
|
+
vertical-align: 0.5px;
|
|
194
|
+
}
|
|
195
|
+
#wenyan .footnote {
|
|
196
|
+
color: var(--main-5);
|
|
197
|
+
background-color: var(--main-1);
|
|
198
|
+
}
|
|
199
|
+
#wenyan img {
|
|
200
|
+
max-width: 100%;
|
|
201
|
+
display: block;
|
|
202
|
+
margin: 0 auto;
|
|
203
|
+
border-radius: 4px;
|
|
204
|
+
}
|
|
205
|
+
#wenyan pre {
|
|
206
|
+
border-radius: 5px;
|
|
207
|
+
line-height: 2;
|
|
208
|
+
margin: 1em 0.5em;
|
|
209
|
+
padding: .5em;
|
|
210
|
+
box-shadow: rgba(0, 0, 0, 0.55) 0px 1px 5px;
|
|
211
|
+
}
|
|
212
|
+
#wenyan pre code {
|
|
213
|
+
display: block;
|
|
214
|
+
overflow-x: auto;
|
|
215
|
+
margin: .5em;
|
|
216
|
+
padding: 0;
|
|
217
|
+
font-family: var(--monospace-font);
|
|
218
|
+
}
|
|
219
|
+
#wenyan .footnote {
|
|
220
|
+
color: rgb(239, 112, 96);
|
|
221
|
+
}
|
|
222
|
+
#wenyan #footnotes p {
|
|
223
|
+
display: flex;
|
|
224
|
+
margin: 0;
|
|
225
|
+
font-size: 0.9em;
|
|
226
|
+
}
|
|
227
|
+
#wenyan .footnote-num {
|
|
228
|
+
display: inline;
|
|
229
|
+
width: 10%;
|
|
230
|
+
}
|
|
231
|
+
#wenyan .footnote-txt {
|
|
232
|
+
display: inline;
|
|
233
|
+
width: 90%;
|
|
234
|
+
word-wrap: break-word;
|
|
235
|
+
word-break: break-all;
|
|
236
|
+
}
|
|
237
|
+
`;
|
|
238
|
+
export {
|
|
239
|
+
n as default
|
|
240
|
+
};
|
|
241
|
+
//# sourceMappingURL=pie-DUYodGli.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pie-DUYodGli.js","sources":["../src/themes/pie.css?raw"],"sourcesContent":["export default \"/*\\n * Typora Theme - Pie / Author - kevinzhao2233\\n * https://github.com/kevinzhao2233/typora-theme-pie\\n */\\n\\n:root {\\n --mid-1: #ffffff;\\n --mid-7: #8c8c8c;\\n --mid-9: #434343;\\n --mid-10: #262626;\\n --main-1: #fff2f0;\\n --main-4: #f27f79;\\n --main-5: #e6514e;\\n --main-6: #da282a;\\n}\\n#wenyan {\\n font-family: var(--sans-serif-font);\\n line-height: 1.75;\\n color: var(--mid-10);\\n letter-spacing: 0;\\n font-size: 16px;\\n}\\n#wenyan p,\\n#wenyan pre {\\n margin: 1em 0.8em;\\n}\\n#wenyan p {\\n word-spacing: 0.05rem;\\n text-align: justify;\\n}\\n#wenyan a {\\n word-wrap: break-word;\\n color: var(--main-6);\\n text-decoration: none;\\n border-bottom: 1px solid var(--main-6);\\n transition: border-bottom 0.2s;\\n padding: 0 2px;\\n font-weight: 500;\\n text-decoration: none;\\n}\\n#wenyan h1,\\n#wenyan h2,\\n#wenyan h3,\\n#wenyan h4,\\n#wenyan h5,\\n#wenyan h6 {\\n position: relative;\\n margin: 1.2em 0 1em;\\n padding: 0px;\\n font-weight: bold;\\n cursor: text;\\n}\\n#wenyan h2 a,\\n#wenyan h3 a {\\n color: var(--mid-9);\\n}\\n#wenyan h1 {\\n font-size: 1.5em;\\n text-align: center;\\n}\\n#wenyan h1::after {\\n display: block;\\n width: 100px;\\n height: 2px;\\n margin: 0.2em auto 0;\\n content: \\\"\\\";\\n border-bottom: 2px dashed var(--main-6);\\n}\\n#wenyan h2 {\\n padding-left: 6px;\\n margin: 2em auto 1.4em;\\n font-size: 1.3em;\\n border-left: 6px solid var(--main-6);\\n}\\n#wenyan h3 {\\n font-size: 1.2em;\\n}\\n#wenyan h3::before {\\n display: inline-block;\\n width: 6px;\\n height: 6px;\\n margin-right: 6px;\\n margin-bottom: 0.18em;\\n line-height: 1.43;\\n vertical-align: middle;\\n content: \\\"\\\";\\n background-color: var(--main-5);\\n border-radius: 50%;\\n}\\n#wenyan h4 {\\n font-size: 1.2em;\\n}\\n#wenyan h4::before {\\n display: inline-block;\\n width: 6px;\\n height: 2px;\\n margin-right: 8px;\\n margin-bottom: 0.18em;\\n vertical-align: middle;\\n content: \\\"\\\";\\n background-color: var(--main-4);\\n}\\n#wenyan h5 {\\n font-size: 1.2em;\\n}\\n#wenyan h6 {\\n font-size: 1.2em;\\n color: var(--mid-7);\\n}\\n#wenyan li > ol,\\n#wenyan li > ul {\\n margin: 0;\\n}\\n#wenyan hr {\\n box-sizing: content-box;\\n width: 100%;\\n height: 1px;\\n padding: 0;\\n margin: 46px auto 64px;\\n overflow: hidden;\\n background-color: var(--main-4);\\n border: 0;\\n}\\n#wenyan blockquote {\\n position: relative;\\n padding: 24px 16px 12px;\\n margin: 24px 0 36px;\\n font-size: 1em;\\n font-style: normal;\\n line-height: 1.6;\\n color: var(--mid-7);\\n text-indent: 0;\\n border: none;\\n border-left: 2px solid var(--main-6);\\n}\\n#wenyan blockquote blockquote {\\n padding-right: 0;\\n}\\n#wenyan blockquote a {\\n color: var(--mid-7);\\n}\\n#wenyan blockquote::before {\\n position: absolute;\\n top: 0;\\n left: 12px;\\n font-family: Arial, serif;\\n font-size: 2em;\\n font-weight: 700;\\n line-height: 1em;\\n color: var(--main-6);\\n content: \\\"“\\\";\\n}\\n#wenyan table {\\n border-collapse: collapse;\\n margin: 1.4em auto;\\n max-width: 100%;\\n table-layout: fixed;\\n text-align: left;\\n overflow: auto;\\n display: table;\\n word-wrap: break-word;\\n word-break: break-all;\\n}\\n#wenyan table td,\\n#wenyan table th {\\n font-size: 0.75em;\\n padding: 9px 12px;\\n line-height: 22px;\\n vertical-align: top;\\n border: 1px solid var(--main-4);\\n}\\n#wenyan table th {\\n font-weight: bold;\\n color: var(--main-6);\\n background-color: var(--main-1);\\n}\\n#wenyan strong {\\n padding: 0 1px;\\n}\\n#wenyan em {\\n padding: 0 5px 0 2px;\\n}\\n#wenyan p code {\\n padding: 2px 4px 1px;\\n margin: 0 2px;\\n font-family: var(--monospace-font);\\n font-size: 0.92rem;\\n color: var(--main-5);\\n background-color: var(--main-1);\\n border-radius: 3px;\\n}\\n#wenyan p code {\\n vertical-align: 0.5px;\\n}\\n#wenyan .footnote {\\n color: var(--main-5);\\n background-color: var(--main-1);\\n}\\n#wenyan img {\\n max-width: 100%;\\n display: block;\\n margin: 0 auto;\\n border-radius: 4px;\\n}\\n#wenyan pre {\\n border-radius: 5px;\\n line-height: 2;\\n margin: 1em 0.5em;\\n padding: .5em;\\n box-shadow: rgba(0, 0, 0, 0.55) 0px 1px 5px;\\n}\\n#wenyan pre code {\\n display: block;\\n overflow-x: auto;\\n margin: .5em;\\n padding: 0;\\n font-family: var(--monospace-font);\\n}\\n#wenyan .footnote {\\n color: rgb(239, 112, 96);\\n}\\n#wenyan #footnotes p {\\n display: flex;\\n margin: 0;\\n font-size: 0.9em;\\n}\\n#wenyan .footnote-num {\\n display: inline;\\n width: 10%;\\n}\\n#wenyan .footnote-txt {\\n display: inline;\\n width: 90%;\\n word-wrap: break-word;\\n word-break: break-all;\\n}\\n\""],"names":["pie"],"mappings":"AAAA,MAAAA,IAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
|