@vuepress-plume/plugin-fonts 1.0.0-rc.117 → 1.0.0-rc.119
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/lib/client/styles/fonts.css +79 -6
- package/package.json +1 -1
|
@@ -238,13 +238,86 @@
|
|
|
238
238
|
U+FFFD;
|
|
239
239
|
}
|
|
240
240
|
|
|
241
|
-
/* Chinese quotes rendering fix. 中英文弯引号共享 Unicode 码位,确保引号使用中文字体渲染 */
|
|
242
241
|
@font-face {
|
|
243
|
-
font-family: "
|
|
242
|
+
font-family: "Punctuation SC";
|
|
243
|
+
font-weight: 400;
|
|
244
244
|
src:
|
|
245
245
|
local("PingFang SC Regular"),
|
|
246
|
-
local("
|
|
247
|
-
local("
|
|
248
|
-
|
|
249
|
-
|
|
246
|
+
local("Noto Sans CJK SC"),
|
|
247
|
+
local("Microsoft YaHei");
|
|
248
|
+
unicode-range:
|
|
249
|
+
U+201C,
|
|
250
|
+
U+201D,
|
|
251
|
+
U+2018,
|
|
252
|
+
U+2019,
|
|
253
|
+
U+2E3A,
|
|
254
|
+
U+2014,
|
|
255
|
+
U+2013,
|
|
256
|
+
U+2026,
|
|
257
|
+
U+00B7,
|
|
258
|
+
U+007E,
|
|
259
|
+
U+002F;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
@font-face {
|
|
263
|
+
font-family: "Punctuation SC";
|
|
264
|
+
font-weight: 500;
|
|
265
|
+
src:
|
|
266
|
+
local("PingFang SC Medium"),
|
|
267
|
+
local("Noto Sans CJK SC"),
|
|
268
|
+
local("Microsoft YaHei");
|
|
269
|
+
unicode-range:
|
|
270
|
+
U+201C,
|
|
271
|
+
U+201D,
|
|
272
|
+
U+2018,
|
|
273
|
+
U+2019,
|
|
274
|
+
U+2E3A,
|
|
275
|
+
U+2014,
|
|
276
|
+
U+2013,
|
|
277
|
+
U+2026,
|
|
278
|
+
U+00B7,
|
|
279
|
+
U+007E,
|
|
280
|
+
U+002F;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
@font-face {
|
|
284
|
+
font-family: "Punctuation SC";
|
|
285
|
+
font-weight: 600;
|
|
286
|
+
src:
|
|
287
|
+
local("PingFang SC Semibold"),
|
|
288
|
+
local("Noto Sans CJK SC Bold"),
|
|
289
|
+
local("Microsoft YaHei Bold");
|
|
290
|
+
unicode-range:
|
|
291
|
+
U+201C,
|
|
292
|
+
U+201D,
|
|
293
|
+
U+2018,
|
|
294
|
+
U+2019,
|
|
295
|
+
U+2E3A,
|
|
296
|
+
U+2014,
|
|
297
|
+
U+2013,
|
|
298
|
+
U+2026,
|
|
299
|
+
U+00B7,
|
|
300
|
+
U+007E,
|
|
301
|
+
U+002F;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
@font-face {
|
|
305
|
+
font-family: "Punctuation SC";
|
|
306
|
+
font-weight: 700;
|
|
307
|
+
src:
|
|
308
|
+
local("PingFang SC Semibold"),
|
|
309
|
+
local("Noto Sans CJK SC Bold"),
|
|
310
|
+
local("Microsoft YaHei Bold");
|
|
311
|
+
unicode-range:
|
|
312
|
+
U+201C,
|
|
313
|
+
U+201D,
|
|
314
|
+
U+2018,
|
|
315
|
+
U+2019,
|
|
316
|
+
U+2E3A,
|
|
317
|
+
U+2014,
|
|
318
|
+
U+2013,
|
|
319
|
+
U+2026,
|
|
320
|
+
U+00B7,
|
|
321
|
+
U+007E,
|
|
322
|
+
U+002F;
|
|
250
323
|
}
|
package/package.json
CHANGED