명령어 등등/컴퓨터 세팅

깃허브 블로그 폰트 바꾸기

mcdn 2021. 8. 28. 16:51
반응형

'RIDIBatang',

 

https://oilmlio.com/blog/Change-the-GitHub-Blog-Font-RIDIBatang/

 

깃허브(GitHub) 블로그 폰트 바꾸는법 (otf, woff 파일 사용)

깃허브 블로그 폰트 바꾸기 otf, woff, ttf 파일을 사용해서 리디바탕 및 웹폰트를 jekyll minimal mistakes 테마에 적용하는법

oilmlio.com

이거 그대로 따라하면 된다 

 

중간에 otf -> woff를 바꾸는 건 

 

https://convertio.co/kr/

 

Convertio — 파일 변환기

300가지 이상의 포맷 지원 저희는 300가지 이상의 서로 다른 파일 포맷 간의 25600가지 이상의 서로 다른 변환을 지원합니다. 다른 어떤 변환기보다 많은 수입니다. 신속 및 간단 페이지에 간단히

convertio.co

이 사이트에서 하면 좋음 

 

https://ridicorp.com/ridibatang/

 

리디바탕 - 리디주식회사 RIDI Corporation

라이선스 안내 리디바탕 글꼴은 개인 및 기업 사용자를 포함한 모든 사용자에게 무료로 제공되며 자유롭게 수정하고 재배포하실 수 있습니다. 단, 글꼴 자체를 유료로 판매하는 것은 금지하며,

www.ridicorp.com

https://noonnu.cc/font_page/324

 

눈누 - 상업용 무료한글폰트 사이트

리디바탕 - 리디주식회사

noonnu.cc

리디 폰트 너무 예쁨 

 

// Colors
$default-color: #555 !default;
$default-shade: #353535 !default;
$default-tint: #aaa !default;
$grey-1: #979797 !default;
$grey-2: #e5e5e5 !default;
$grey-3: #f9f9f9 !default;
$white: #fff !default;
$blue: #4a9ae1 !default;
$shadow-color: rgba(0, 0, 0, .2) !default;
$code-color: #bf616a !default;

// Fonts
$serif-primary: 'RIDIBatang', 'Libre Baskerville', 'Times New Roman', Times, serif !default;
$serif-secondary: Palatino, 'Palatino LT STD', 'Palatino Linotype', 'Book Antiqua', 'Georgia', serif !default;
$sans-serif: 'RIDIBatang', 'Helvetica Neue', 'Segoe UI', Helvetica, Arial, sans-serif !default;
$monospaced: Menlo, Monaco, monospace !default;

@mixin box-sizing($type: border-box) {
  -webkit-box-sizing: $type;
     -moz-box-sizing: $type;
          box-sizing: $type;
}

@mixin transition($args...) {
  -webkit-transition: $args;
     -moz-transition: $args;
          transition: $args;
}

이렇게 추가함 

 

 

css 폴더가 없으면 만들면 된다 

 

굿굿

 

반응형