diff --git a/assets/fonts/ComicNeue-Bold.woff b/assets/fonts/ComicNeue-Bold.woff new file mode 100644 index 0000000..6e1eff3 Binary files /dev/null and b/assets/fonts/ComicNeue-Bold.woff differ diff --git a/assets/fonts/ComicNeue-Bold.woff2 b/assets/fonts/ComicNeue-Bold.woff2 new file mode 100644 index 0000000..7c92d80 Binary files /dev/null and b/assets/fonts/ComicNeue-Bold.woff2 differ diff --git a/assets/fonts/ComicNeue-BoldItalic.woff b/assets/fonts/ComicNeue-BoldItalic.woff new file mode 100644 index 0000000..99cf152 Binary files /dev/null and b/assets/fonts/ComicNeue-BoldItalic.woff differ diff --git a/assets/fonts/ComicNeue-BoldItalic.woff2 b/assets/fonts/ComicNeue-BoldItalic.woff2 new file mode 100644 index 0000000..1289df5 Binary files /dev/null and b/assets/fonts/ComicNeue-BoldItalic.woff2 differ diff --git a/assets/fonts/ComicNeue-Italic.woff b/assets/fonts/ComicNeue-Italic.woff new file mode 100644 index 0000000..7fcc96c Binary files /dev/null and b/assets/fonts/ComicNeue-Italic.woff differ diff --git a/assets/fonts/ComicNeue-Italic.woff2 b/assets/fonts/ComicNeue-Italic.woff2 new file mode 100644 index 0000000..a97f992 Binary files /dev/null and b/assets/fonts/ComicNeue-Italic.woff2 differ diff --git a/assets/fonts/ComicNeue-Regular.woff b/assets/fonts/ComicNeue-Regular.woff new file mode 100644 index 0000000..5479f73 Binary files /dev/null and b/assets/fonts/ComicNeue-Regular.woff differ diff --git a/assets/fonts/ComicNeue-Regular.woff2 b/assets/fonts/ComicNeue-Regular.woff2 new file mode 100644 index 0000000..04a82fb Binary files /dev/null and b/assets/fonts/ComicNeue-Regular.woff2 differ diff --git a/assets/fonts/FiraCode-Medium.woff b/assets/fonts/FiraCode-Medium.woff new file mode 100644 index 0000000..921caab Binary files /dev/null and b/assets/fonts/FiraCode-Medium.woff differ diff --git a/assets/fonts/FiraCode-Medium.woff2 b/assets/fonts/FiraCode-Medium.woff2 new file mode 100644 index 0000000..b3999e1 Binary files /dev/null and b/assets/fonts/FiraCode-Medium.woff2 differ diff --git a/assets/fonts/FiraCode-Regular.woff b/assets/fonts/FiraCode-Regular.woff new file mode 100644 index 0000000..498175b Binary files /dev/null and b/assets/fonts/FiraCode-Regular.woff differ diff --git a/assets/fonts/FiraCode-Regular.woff2 b/assets/fonts/FiraCode-Regular.woff2 new file mode 100644 index 0000000..9ef6c65 Binary files /dev/null and b/assets/fonts/FiraCode-Regular.woff2 differ diff --git a/assets/scss/base.scss b/assets/scss/base.scss index 59db266..5a0b714 100644 --- a/assets/scss/base.scss +++ b/assets/scss/base.scss @@ -1,5 +1,5 @@ -@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap'); @import "~bootstrap"; +@import "fonts"; $black: #141414; $orange: #d6972a; diff --git a/assets/scss/fonts.scss b/assets/scss/fonts.scss new file mode 100644 index 0000000..83fbfcc --- /dev/null +++ b/assets/scss/fonts.scss @@ -0,0 +1,54 @@ +@font-face { + font-family: 'Fira Code'; + src: url('../fonts/FiraCode-Regular.woff2') format('woff2'), + url('../fonts/FiraCode-Regular.woff') format('woff'); + font-weight: normal; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'Fira Code'; + src: url('../fonts/FiraCode-Medium.woff2') format('woff2'), + url('../fonts/FiraCode-Medium.woff') format('woff'); + font-weight: 500; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'Comic Neue'; + src: url('../fonts/ComicNeue-Bold.woff2') format('woff2'), + url('../fonts/ComicNeue-Bold.woff') format('woff'); + font-weight: bold; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'Comic Neue'; + src: url('../fonts/ComicNeue-BoldItalic.woff2') format('woff2'), + url('../fonts/ComicNeue-BoldItalic.woff') format('woff'); + font-weight: bold; + font-style: italic; + font-display: swap; +} + +@font-face { + font-family: 'Comic Neue'; + src: url('../fonts/ComicNeue-Regular.woff2') format('woff2'), + url('../fonts/ComicNeue-Regular.woff') format('woff'); + font-weight: normal; + font-style: normal; + font-display: swap; +} + +@font-face { + font-family: 'Comic Neue'; + src: url('../fonts/ComicNeue-Italic.woff2') format('woff2'), + url('../fonts/ComicNeue-Italic.woff') format('woff'); + font-weight: normal; + font-style: italic; + font-display: swap; +} +