@wenyan-md/mcp 1.0.1 → 1.0.2
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/README.md +34 -2
- package/package.json +1 -1
- package/dist/highlight/highlight/styles/atom-one-dark.min.css +0 -1
- package/dist/highlight/highlight/styles/atom-one-light.min.css +0 -1
- package/dist/highlight/highlight/styles/dracula.min.css +0 -8
- package/dist/highlight/highlight/styles/github-dark.min.css +0 -10
- package/dist/highlight/highlight/styles/github.min.css +0 -10
- package/dist/highlight/highlight/styles/monokai.min.css +0 -1
- package/dist/highlight/highlight/styles/solarized-dark.min.css +0 -8
- package/dist/highlight/highlight/styles/solarized-light.min.css +0 -8
- package/dist/highlight/highlight/styles/xcode.min.css +0 -1
- package/dist/highlight/styles/atom-one-dark.min.css +0 -1
- package/dist/highlight/styles/atom-one-light.min.css +0 -1
- package/dist/highlight/styles/dracula.min.css +0 -8
- package/dist/highlight/styles/github-dark.min.css +0 -10
- package/dist/highlight/styles/github.min.css +0 -10
- package/dist/highlight/styles/monokai.min.css +0 -1
- package/dist/highlight/styles/solarized-dark.min.css +0 -8
- package/dist/highlight/styles/solarized-light.min.css +0 -8
- package/dist/highlight/styles/xcode.min.css +0 -1
- package/dist/index.d.ts +0 -11
- package/dist/index.d.ts.map +0 -1
- package/dist/index.js +0 -118
- package/dist/mac_style.css +0 -8
- package/dist/main.js +0 -495
- package/dist/publish.d.ts +0 -2
- package/dist/publish.d.ts.map +0 -1
- package/dist/publish.js +0 -142
- package/dist/resources.d.ts +0 -3
- package/dist/resources.d.ts.map +0 -1
- package/dist/resources.js +0 -42
- package/dist/theme.d.ts +0 -7
- package/dist/theme.d.ts.map +0 -1
- package/dist/theme.js +0 -42
- package/dist/themes/default.css +0 -180
- package/dist/themes/lapis.css +0 -190
- package/dist/themes/maize.css +0 -190
- package/dist/themes/orangeheart.css +0 -180
- package/dist/themes/phycat.css +0 -331
- package/dist/themes/pie.css +0 -236
- package/dist/themes/purple.css +0 -179
- package/dist/themes/rainbow.css +0 -163
- package/dist/themes/themes/default.css +0 -180
- package/dist/themes/themes/lapis.css +0 -190
- package/dist/themes/themes/maize.css +0 -190
- package/dist/themes/themes/orangeheart.css +0 -180
- package/dist/themes/themes/phycat.css +0 -331
- package/dist/themes/themes/pie.css +0 -236
- package/dist/themes/themes/purple.css +0 -179
- package/dist/themes/themes/rainbow.css +0 -163
- package/dist/types.d.ts +0 -10
- package/dist/types.d.ts.map +0 -1
- package/dist/types.js +0 -1
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Typora Theme - Orange Heart / Author - evgo2017
|
|
3
|
-
* https://github.com/evgo2017/typora-theme-orange-heart
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
#wenyan {
|
|
7
|
-
font-family: var(--sans-serif-font);
|
|
8
|
-
line-height: 1.75;
|
|
9
|
-
font-size: 16px;
|
|
10
|
-
}
|
|
11
|
-
#wenyan p,
|
|
12
|
-
#wenyan pre {
|
|
13
|
-
margin: 1em 0;
|
|
14
|
-
}
|
|
15
|
-
#wenyan h1,
|
|
16
|
-
#wenyan h2,
|
|
17
|
-
#wenyan h3,
|
|
18
|
-
#wenyan h4,
|
|
19
|
-
#wenyan h5,
|
|
20
|
-
#wenyan h6 {
|
|
21
|
-
margin: 1.2em 0 1em;
|
|
22
|
-
padding: 0px;
|
|
23
|
-
font-weight: bold;
|
|
24
|
-
}
|
|
25
|
-
#wenyan h1 {
|
|
26
|
-
font-size: 1.5em;
|
|
27
|
-
}
|
|
28
|
-
#wenyan h2 {
|
|
29
|
-
font-size: 1.3em;
|
|
30
|
-
border-bottom: 2px solid rgb(239, 112, 96);
|
|
31
|
-
display: flex;
|
|
32
|
-
}
|
|
33
|
-
#wenyan h2 span {
|
|
34
|
-
display: inline-block;
|
|
35
|
-
font-weight: bold;
|
|
36
|
-
background: rgb(239, 112, 96);
|
|
37
|
-
color: #ffffff;
|
|
38
|
-
padding: 3px 10px 1px;
|
|
39
|
-
border-top-right-radius: 3px;
|
|
40
|
-
border-top-left-radius: 3px;
|
|
41
|
-
margin-right: 3px;
|
|
42
|
-
}
|
|
43
|
-
#wenyan h2::after {
|
|
44
|
-
content: "";
|
|
45
|
-
border-bottom: 36px solid #efebe9;
|
|
46
|
-
border-right: 20px solid transparent;
|
|
47
|
-
align-self: flex-end;
|
|
48
|
-
height: 0;
|
|
49
|
-
}
|
|
50
|
-
#wenyan h3 {
|
|
51
|
-
font-size: 1.3em;
|
|
52
|
-
}
|
|
53
|
-
#wenyan h4 {
|
|
54
|
-
font-size: 1.2em;
|
|
55
|
-
}
|
|
56
|
-
#wenyan h5 {
|
|
57
|
-
font-size: 1.1em;
|
|
58
|
-
}
|
|
59
|
-
#wenyan h6 {
|
|
60
|
-
font-size: 1em;
|
|
61
|
-
}
|
|
62
|
-
#wenyan ul,
|
|
63
|
-
#wenyan ol {
|
|
64
|
-
margin-top: 8px;
|
|
65
|
-
margin-bottom: 8px;
|
|
66
|
-
padding-left: 25px;
|
|
67
|
-
color: black;
|
|
68
|
-
}
|
|
69
|
-
#wenyan ul {
|
|
70
|
-
list-style-type: disc;
|
|
71
|
-
}
|
|
72
|
-
#wenyan ul ul {
|
|
73
|
-
list-style-type: square;
|
|
74
|
-
}
|
|
75
|
-
#wenyan ol {
|
|
76
|
-
list-style-type: decimal;
|
|
77
|
-
}
|
|
78
|
-
#wenyan blockquote {
|
|
79
|
-
margin: 0;
|
|
80
|
-
display: block;
|
|
81
|
-
font-size: 0.9em;
|
|
82
|
-
overflow: auto;
|
|
83
|
-
border-left: 3px solid rgb(239, 112, 96);
|
|
84
|
-
color: #6a737d;
|
|
85
|
-
padding: 10px 10px 10px 20px;
|
|
86
|
-
margin-bottom: 20px;
|
|
87
|
-
margin-top: 20px;
|
|
88
|
-
background: #fff9f9;
|
|
89
|
-
}
|
|
90
|
-
#wenyan a {
|
|
91
|
-
text-decoration: none;
|
|
92
|
-
word-wrap: break-word;
|
|
93
|
-
font-weight: bold;
|
|
94
|
-
color: rgb(239, 112, 96);
|
|
95
|
-
border-bottom: 1px solid rgb(239, 112, 96);
|
|
96
|
-
}
|
|
97
|
-
#wenyan p code,
|
|
98
|
-
#wenyan li code {
|
|
99
|
-
font-size: 0.9em;
|
|
100
|
-
word-wrap: break-word;
|
|
101
|
-
padding: 2px 4px;
|
|
102
|
-
border-radius: 4px;
|
|
103
|
-
margin: 0 2px;
|
|
104
|
-
color: rgb(239, 112, 96);
|
|
105
|
-
background-color: rgba(27, 31, 35, 0.05);
|
|
106
|
-
font-family: var(--monospace-font);
|
|
107
|
-
word-break: break-all;
|
|
108
|
-
}
|
|
109
|
-
#wenyan img {
|
|
110
|
-
max-width: 100%;
|
|
111
|
-
height: auto;
|
|
112
|
-
margin: 0 auto;
|
|
113
|
-
display: block;
|
|
114
|
-
}
|
|
115
|
-
#wenyan span img {
|
|
116
|
-
max-width: 100%;
|
|
117
|
-
display: inline-block;
|
|
118
|
-
border-right: 0px;
|
|
119
|
-
border-left: 0px;
|
|
120
|
-
}
|
|
121
|
-
#wenyan table {
|
|
122
|
-
border-collapse: collapse;
|
|
123
|
-
margin: 1.4em auto;
|
|
124
|
-
max-width: 100%;
|
|
125
|
-
table-layout: fixed;
|
|
126
|
-
text-align: left;
|
|
127
|
-
overflow: auto;
|
|
128
|
-
display: table;
|
|
129
|
-
word-wrap: break-word;
|
|
130
|
-
word-break: break-all;
|
|
131
|
-
}
|
|
132
|
-
#wenyan table td,
|
|
133
|
-
#wenyan table th {
|
|
134
|
-
font-size: 0.75em;
|
|
135
|
-
padding: 9px 12px;
|
|
136
|
-
line-height: 22px;
|
|
137
|
-
color: #222;
|
|
138
|
-
border: 1px solid rgb(239, 112, 96);
|
|
139
|
-
vertical-align: top;
|
|
140
|
-
}
|
|
141
|
-
#wenyan table th {
|
|
142
|
-
font-weight: bold;
|
|
143
|
-
background-color: #fff9f9;
|
|
144
|
-
color: rgb(239, 112, 96);
|
|
145
|
-
}
|
|
146
|
-
#wenyan span code,
|
|
147
|
-
#wenyan li code {
|
|
148
|
-
color: rgb(239, 112, 96);
|
|
149
|
-
}
|
|
150
|
-
#wenyan pre {
|
|
151
|
-
border-radius: 5px;
|
|
152
|
-
line-height: 2;
|
|
153
|
-
margin: 1em 0.5em;
|
|
154
|
-
padding: .5em;
|
|
155
|
-
box-shadow: rgba(0, 0, 0, 0.55) 0px 1px 5px;
|
|
156
|
-
}
|
|
157
|
-
#wenyan pre code {
|
|
158
|
-
display: block;
|
|
159
|
-
margin: .5em;
|
|
160
|
-
padding: 0;
|
|
161
|
-
font-family: var(--monospace-font);
|
|
162
|
-
}
|
|
163
|
-
#wenyan .footnote {
|
|
164
|
-
color: rgb(239, 112, 96);
|
|
165
|
-
}
|
|
166
|
-
#wenyan #footnotes p {
|
|
167
|
-
display: flex;
|
|
168
|
-
margin: 0;
|
|
169
|
-
font-size: 0.9em;
|
|
170
|
-
}
|
|
171
|
-
#wenyan .footnote-num {
|
|
172
|
-
display: inline;
|
|
173
|
-
width: 10%;
|
|
174
|
-
}
|
|
175
|
-
#wenyan .footnote-txt {
|
|
176
|
-
display: inline;
|
|
177
|
-
width: 90%;
|
|
178
|
-
word-wrap: break-word;
|
|
179
|
-
word-break: break-all;
|
|
180
|
-
}
|
package/dist/themes/phycat.css
DELETED
|
@@ -1,331 +0,0 @@
|
|
|
1
|
-
/*
|
|
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
|
-
}
|