diff --git a/Makefile b/Makefile index cbdd280..250bf42 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ SHARED_FILES := stallman.webp stallman_2024.webp favicon.ico \ moon.svg sun.svg narrow_light.svg narrow_dark.svg wide_light.svg wide_dark.svg lang_cz.svg lang_en.svg \ styles.css icons.css \ countdown.js theme.js lang.js \ - doto.ttf + jetbrains_mono.ttf SEARCH_REPLACE := lib/search_and_replace/target/release/search_and_replace COMPONENTS := head.html header.html nav.html footer.html diff --git a/fonts/doto.ttf b/fonts/doto.ttf deleted file mode 100644 index 5b4cf7d..0000000 Binary files a/fonts/doto.ttf and /dev/null differ diff --git a/fonts/jetbrains_mono.ttf b/fonts/jetbrains_mono.ttf new file mode 100644 index 0000000..9767115 Binary files /dev/null and b/fonts/jetbrains_mono.ttf differ diff --git a/styles/styles.css b/styles/styles.css index 9c39d41..c3d2468 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -111,8 +111,8 @@ } @font-face { - font-family: doto; - src: url("doto.ttf"); + font-family: jetbrains_mono; + src: url("jetbrains_mono.ttf"); } html { @@ -218,10 +218,7 @@ header * { text-align: center; margin: 1.5em auto; padding: 0 .5em; - outline: 1px dotted black; - font-family: doto, monospace; - background-color: var(--fg-color); - color: var(--bg-color); + font-family: jetbrains_mono, monospace; width: fit-content; font-weight: bold; }