project名を明朝体にする
code:style.css
.project-home .title {
/* font-family: serif; */
font-family: var(--project-title-font, ""), serif;
font-weight: 400;
}
project titleの字体調節
2024-02-23
formatしたper_terra.icon
2024-04-17 11:41:09 .quick-launch .project-home .title {を.project-home .title {に変更per_terra.icon
2026-07-05 CSS変数--project-title-fontを導入Nrem.icon
font-family: serif;→font-family: var(--project-title-font, ""), serif;
UserCSSでフォントを変更するためのCSS変数です
例:BIZ UD明朝に変更する
BIZ UDMincho – Google Fonts
code:example.css
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDMincho&display=swap');
body {
--project-title-font: "BIZ UDMincho", "BIZ UD明朝", "BIZ UDPMincho", "BIZ UDP明朝", sans-serif;
}