jointrashposs/public/fonts/fonts.css

41 lines
1.4 KiB
CSS
Raw Normal View History

2023-07-09 20:09:50 +02:00
/** Japanese (GenjyuuGothicX) */
2023-07-08 10:36:02 +02:00
@import url('./GenJyuuGothicX-Bold/GenJyuuGothicX-Bold.css');
@import url('./GenJyuuGothicX-P-Bold/GenJyuuGothicX-P-Bold.css');
@import url('./GenJyuuGothicX-P-Regular/GenJyuuGothicX-P-Regular.css');
@import url('./GenJyuuGothicX-Regular/GenJyuuGothicX-Regular.css');
2023-12-11 16:58:57 +01:00
/** Korean (Gothic A1) */
@import url('https://fonts.googleapis.com/css2?family=Gothic+A1:wght@400;700&display=swap');
2023-10-29 15:30:59 +01:00
/** Simplified Chinese (Noto Sans SC) */
@import url('https://fonts.googleapis.cn/css2?family=Noto+Sans+SC:wght@400;700&display=swap');
/** Traditional Chinese (Noto Sans TC) */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&display=swap');
2023-07-09 20:09:50 +02:00
2023-10-29 15:47:46 +01:00
._i18n {
font-family: Nunito, var(--mi-localized-font, ''), ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
2023-11-25 12:06:02 +01:00
html[lang='ja-JP'],
._i18n[lang='ja'],
._i18n[lang='ja-JP'] {
2023-07-09 20:09:50 +02:00
--mi-localized-font: 'GenJyuuGothicX';
--mi-localized-font-p: 'GenJyuuGothicXP';
}
2023-11-25 12:06:02 +01:00
html[lang='ko-KR'],
._i18n[lang='ko'],
._i18n[lang='ko-KR'] {
2023-12-11 16:58:57 +01:00
--mi-localized-font: 'Gothic A1';
2023-10-29 15:30:59 +01:00
}
2023-11-25 12:06:02 +01:00
html[lang='zh-CN'],
._i18n[lang='cn'],
._i18n[lang='zh-CN'] {
2023-10-29 15:30:59 +01:00
--mi-localized-font: 'Noto Sans SC';
}
2023-11-25 12:06:02 +01:00
html[lang='zh-TW'],
._i18n[lang='tw'],
._i18n[lang='zh-TW'] {
2023-10-29 15:30:59 +01:00
--mi-localized-font: 'Noto Sans TC';
2023-11-25 12:06:02 +01:00
}