24 lines
903 B
CSS
24 lines
903 B
CSS
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css'); /* 기본 고딕용 */
|
|
@font-face {
|
|
font-family: 'Ridibatang';
|
|
src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/Ridibatang.woff') format('woff');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
/* Ridibatang - 본문은 리디바탕, UI 요소는 고딕(Pretendard) 혼용 추천 */
|
|
body, p, .content-area {
|
|
font-family: 'Ridibatang', serif !important;
|
|
}
|
|
|
|
/* 제목이나 버튼 등은 가독성을 위해 고딕 유지 (선택 사항) */
|
|
h1, h2, h3, h4, h5, h6, input, textarea, select, button, .btn {
|
|
font-family: 'Pretendard', sans-serif !important;
|
|
}
|
|
|
|
.font-L { font-weight: 300 !important; }
|
|
.font-R { font-weight: 400 !important; }
|
|
.font-M { font-weight: 500 !important; }
|
|
.font-B { font-weight: 700 !important; }
|
|
.font-H { font-weight: 900 !important; }
|