feat(frontend): self host fonts
This commit is contained in:
parent
83e38bb320
commit
99ab8b6864
4 changed files with 39 additions and 1 deletions
|
@ -1,4 +1,36 @@
|
|||
@import url("https://free.bboxtype.com/embedfonts/?family=FiraGO:400,400i,700,700i");
|
||||
@font-face {
|
||||
font-family: "FiraGO";
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("/fonts/FiraGO-400.woff") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "FiraGO";
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("/fonts/FiraGO-400i.woff") format("woff");
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "FiraGO";
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url("/fonts/FiraGO-700.woff") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "FiraGO";
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url("/fonts/FiraGO-700i.woff") format("woff");
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "FiraGO", sans-serif;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue