27 lines
595 B
SCSS
27 lines
595 B
SCSS
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
|
|
|
|
$font-family-sans-serif: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic';
|
|
|
|
html, body {
|
|
font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic';
|
|
}
|
|
|
|
.f_tnum{
|
|
//고정폭 숫자
|
|
font-feature-settings: 'tnum';
|
|
}
|
|
|
|
.f_ccmp{
|
|
//합성 문자
|
|
font-feature-settings: 'ccmp';
|
|
}
|
|
|
|
.f_frac{
|
|
//분수 및 첨자
|
|
font-feature-settings: 'frac';
|
|
}
|
|
|
|
.f_ss05{
|
|
//한글에 맞춘 줄임표(비표준)
|
|
font-feature-settings: 'ss05';
|
|
} |