setting:コードブロックのフォントをRictyに
junked.icon
ダメです
issue:Scrapboxで外部のフォントを使えない
#Settings
コードブロックのテキストをRictyにしたい
手っ取り早く、姉妹フォントのRicty Diminished
code:style.css
@font-face {
font-family: "Ricty Diminished Discord";
src: local("Ricty Diminished Discord"), url("https://github.com/dragoon8192/RictyDiminished/blob/master/RictyDiminishedDiscord-Regular.woff?raw=true") format("woff");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Ricty Diminished Discord";
src: local("Ricty Diminished Discord"), url("https://github.com/dragoon8192/RictyDiminished/blob/master/RictyDiminishedDiscord-Bold.woff?raw=true") format("woff");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "Ricty Diminished Discord";
src: local("Ricty Diminished Discord"), url("https://github.com/dragoon8192/RictyDiminished/blob/master/RictyDiminishedDiscord-Oblique.woff?raw=true") format("woff");
font-weight: normal;
font-style: oblique;
}
@font-face {
font-family: "Ricty Diminished Discord";
src: local("Ricty Diminished Discord"), url("https://github.com/dragoon8192/RictyDiminished/blob/master/RictyDiminishedDiscord-BoldOblique.woff?raw=true") format("woff");
font-weight: bold;
font-style: oblique;
}
ヨシ!
code:style.css
.line span.code-block .code-body{
font-family: "Ricty Discord", "Ricty Diminished Discord", "Monaco";
font-weight: normal;
font-style: normal;
}