notes: add fallback font for comic sans (#4212).

This commit is contained in:
evazion
2019-11-16 22:43:16 -06:00
parent 364ecfe68f
commit fedb525305
3 changed files with 437 additions and 17 deletions

View File

@@ -0,0 +1,20 @@
/* These are fallback fonts intended for use in notes. */
/* https://fontlibrary.org/en/font/comic-relief */
@font-face {
font-family: "Comic Sans MS";
font-weight: normal;
font-display: swap;
src:
local("Comic Sans MS"),
url("../../../../../node_modules/typopro-web/web/TypoPRO-ComicRelief/TypoPRO-ComicRelief-Regular.woff") format("woff");
}
@font-face {
font-family: "Comic Sans MS";
font-weight: bold;
font-display: swap;
src:
local("Comic Sans MS"),
url("../../../../../node_modules/typopro-web/web/TypoPRO-ComicRelief/TypoPRO-ComicRelief-Bold.woff") format("woff");
}