mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-28 07:14:05 -06:00
23 lines
565 B
CSS
23 lines
565 B
CSS
/* Copyright (c) 2025 Github@ArenaDruid | MIT License */
|
|
/* 定义中文斜体专用字体 */
|
|
@font-face {
|
|
font-family: 'ChineseItalic';
|
|
font-style: italic;
|
|
src: local('楷体'),
|
|
local('Kaiti SC'),
|
|
local('STKaiti');
|
|
unicode-range: U+4E00-9FFF; /* 中文字符范围 */
|
|
}
|
|
|
|
/* 智能应用规则 */
|
|
em, .cm-em, i {
|
|
font-family:
|
|
-apple-system, /* 西文字体栈 */
|
|
BlinkMacSystemFont,
|
|
'Segoe UI',
|
|
Roboto,
|
|
'ChineseItalic', /* 中文斜体触发 */
|
|
sans-serif;
|
|
|
|
font-style: italic; /* 必须保持斜体状态 */
|
|
} |