From 75921a93df137a104fdd8e92cb09c0586df55804 Mon Sep 17 00:00:00 2001 From: clkim Date: Fri, 14 Nov 2025 10:50:52 +0900 Subject: [PATCH] =?UTF-8?q?feat.=20font=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- layers/assets/css/app.css | 3 +- layers/assets/css/base/_font.css | 92 ++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 layers/assets/css/base/_font.css diff --git a/layers/assets/css/app.css b/layers/assets/css/app.css index a519894..2f52876 100644 --- a/layers/assets/css/app.css +++ b/layers/assets/css/app.css @@ -1,5 +1,6 @@ -@import './base/_theme.css'; @import './base/_reset.css'; +@import './base/_theme.css'; +@import './base/_font.css'; @import './base/_transition.css'; @import './components/_button.css'; diff --git a/layers/assets/css/base/_font.css b/layers/assets/css/base/_font.css new file mode 100644 index 0000000..550e265 --- /dev/null +++ b/layers/assets/css/base/_font.css @@ -0,0 +1,92 @@ +@import url(https://static-cdn.onstove.com/0.0.1/font/SpoqaSans/StoveUIFont-KR.css); +@import url(https://static-cdn.onstove.com/0.0.4/font/Inter/StoveFont-Global.css); +@import url(https://static-cdn.onstove.com/0.0.4/font-icon/StoveFont-Icon.css); +/* @import url(https://static-cdn.onstove.com/0.0.1/font/SpoqaSans/StoveFont-KR.css); */ + +:lang(ko) { + font-family: + Spoqa Han Sans Neo KR, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +} + +:lang(en) { + font-family: + inter Global, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +} + +:lang(zh), +:lang(zh-cn) { + font-family: + Microsoft YaHei UI, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +} + +:lang(zh-tw) { + font-family: + Microsoft JhengHei UI, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +} + +:lang(ja) { + font-family: + Meiryo Yu Gothic UI, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +} + +:lang(de), +:lang(es), +:lang(fr), +:lang(pt) { + font-family: + inter Global, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +} + +:lang(th) { + font-family: + Leelawadee UI, + -apple-system, + Segoe UI, + Helvetica, + Arial, + sans-serif, + Apple Color Emoji, + Segoe UI Emoji; +}