diff --git a/assets/_fonts.scss b/assets/_fonts.scss new file mode 100644 index 0000000..acc04e6 --- /dev/null +++ b/assets/_fonts.scss @@ -0,0 +1,27 @@ +@font-face { + font-family: "Noto Sans"; + src: local("Noto Sans"), local("NotoSans-Regular"), url(/NotoSans-Regular.ttf); +} + +@font-face { + font-family: "Noto Sans"; + font-weight: 700; + src: local("Noto Sans Bold"), local("NotoSans-Bold"), url(/NotoSans-Bold.ttf); +} + +@font-face { + font-family: "Noto Sans"; + font-style: italic; + src: local("Noto Sans Italic"), local("NotoSans-Italic"), url(/NotoSans-Italic.ttf); +} + +@font-face { + font-family: "Noto Sans Mono"; + src: local("Noto Sans Mono"), local("NotoSansMono-Regular"), url(/NotoSansMono-Regular.ttf); +} + +@font-face { + font-family: "Noto Sans Mono"; + font-weight: 700; + src: local("Noto Sans Mono Bold"), local("NotoSansMono-Bold"), url(/NotoSansMono-Bold.ttf); +} diff --git a/assets/style.scss b/assets/style.scss index 901bb00..d59112a 100644 --- a/assets/style.scss +++ b/assets/style.scss @@ -1,6 +1,7 @@ @import 'animations'; @import 'breakpoints'; @import 'colors'; +@import 'fonts'; * { box-sizing: border-box; diff --git a/static/NotoSans-Bold.ttf b/static/NotoSans-Bold.ttf new file mode 100644 index 0000000..3e68bc2 Binary files /dev/null and b/static/NotoSans-Bold.ttf differ diff --git a/static/NotoSans-Italic.ttf b/static/NotoSans-Italic.ttf new file mode 100644 index 0000000..eedc5e4 Binary files /dev/null and b/static/NotoSans-Italic.ttf differ diff --git a/static/NotoSans-Regular.ttf b/static/NotoSans-Regular.ttf new file mode 100644 index 0000000..973bc2e Binary files /dev/null and b/static/NotoSans-Regular.ttf differ diff --git a/static/NotoSansMono-Bold.ttf b/static/NotoSansMono-Bold.ttf new file mode 100644 index 0000000..f74b877 Binary files /dev/null and b/static/NotoSansMono-Bold.ttf differ diff --git a/static/NotoSansMono-Regular.ttf b/static/NotoSansMono-Regular.ttf new file mode 100644 index 0000000..9c8ee3c Binary files /dev/null and b/static/NotoSansMono-Regular.ttf differ