From 462bcb0aa839e4603163210fd1ec99e092e32fb0 Mon Sep 17 00:00:00 2001 From: Vineet Kumar Date: Tue, 5 May 2026 11:47:02 -0400 Subject: vendor the fonts --- static/ComicMono-Bold.ttf | Bin 0 -> 20516 bytes static/ComicMono.ttf | Bin 0 -> 18724 bytes static/ComicNeue-Bold.woff2 | Bin 0 -> 20716 bytes static/ComicNeue-BoldItalic.woff2 | Bin 0 -> 21660 bytes static/ComicNeue-Italic.woff2 | Bin 0 -> 22408 bytes static/ComicNeue-Regular.woff2 | Bin 0 -> 22480 bytes static/main.css | 12 ++++++------ 7 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 static/ComicMono-Bold.ttf create mode 100644 static/ComicMono.ttf create mode 100644 static/ComicNeue-Bold.woff2 create mode 100644 static/ComicNeue-BoldItalic.woff2 create mode 100644 static/ComicNeue-Italic.woff2 create mode 100644 static/ComicNeue-Regular.woff2 diff --git a/static/ComicMono-Bold.ttf b/static/ComicMono-Bold.ttf new file mode 100644 index 0000000..e03f41e Binary files /dev/null and b/static/ComicMono-Bold.ttf differ diff --git a/static/ComicMono.ttf b/static/ComicMono.ttf new file mode 100644 index 0000000..9bc7354 Binary files /dev/null and b/static/ComicMono.ttf differ diff --git a/static/ComicNeue-Bold.woff2 b/static/ComicNeue-Bold.woff2 new file mode 100644 index 0000000..250a33f Binary files /dev/null and b/static/ComicNeue-Bold.woff2 differ diff --git a/static/ComicNeue-BoldItalic.woff2 b/static/ComicNeue-BoldItalic.woff2 new file mode 100644 index 0000000..2fecd41 Binary files /dev/null and b/static/ComicNeue-BoldItalic.woff2 differ diff --git a/static/ComicNeue-Italic.woff2 b/static/ComicNeue-Italic.woff2 new file mode 100644 index 0000000..f2bcb15 Binary files /dev/null and b/static/ComicNeue-Italic.woff2 differ diff --git a/static/ComicNeue-Regular.woff2 b/static/ComicNeue-Regular.woff2 new file mode 100644 index 0000000..0580549 Binary files /dev/null and b/static/ComicNeue-Regular.woff2 differ diff --git a/static/main.css b/static/main.css index ef28c74..0a40fe6 100644 --- a/static/main.css +++ b/static/main.css @@ -4,7 +4,7 @@ font-weight: normal; font-style: normal; font-display: swap; - src: url('https://dtinth.github.io/comic-mono-font/ComicMono.ttf'); + src: url('/static/ComicMono.ttf'); } @font-face { @@ -12,13 +12,13 @@ font-weight: bold; font-style: normal; font-display: swap; - src: url('https://dtinth.github.io/comic-mono-font/ComicMono-Bold.ttf'); + src: url('/static/ComicMono-Bold.ttf'); } @font-face { font-family: 'Comic Neue'; src: local('Comic Neue Italic'), local('ComicNeue-Italic'), - url('https://github.com/crozynski/comicneue/raw/refs/heads/master/Fonts/WebFonts/ComicNeue-Italic.woff2') format('woff2'); + url('/static/ComicNeue-Italic.woff2') format('woff2'); font-weight: normal; font-style: italic; font-display: swap; @@ -27,7 +27,7 @@ @font-face { font-family: 'Comic Neue'; src: local('Comic Neue Bold'), local('ComicNeue-Bold'), - url('https://github.com/crozynski/comicneue/raw/refs/heads/master/Fonts/WebFonts/ComicNeue-Bold.woff2') format('woff2'); + url('/static/ComicNeue-Bold.woff2') format('woff2'); font-weight: bold; font-style: normal; font-display: swap; @@ -36,7 +36,7 @@ @font-face { font-family: 'Comic Neue'; src: local('Comic Neue Bold Italic'), local('ComicNeue-BoldItalic'), - url('https://github.com/crozynski/comicneue/raw/refs/heads/master/Fonts/WebFonts/ComicNeue-BoldItalic.woff2') format('woff2'); + url('/static/ComicNeue-BoldItalic.woff2') format('woff2'); font-weight: bold; font-style: italic; font-display: swap; @@ -45,7 +45,7 @@ @font-face { font-family: 'Comic Neue'; src: local('Comic Neue Regular'), local('ComicNeue-Regular'), - url('https://github.com/crozynski/comicneue/raw/refs/heads/master/Fonts/WebFonts/ComicNeue-Regular.woff2') format('woff2'); + url('/static/ComicNeue-Regular.woff2') format('woff2'); font-weight: normal; font-style: normal; font-display: swap; -- cgit v1.2.3