From 0b4406e547c84472e97fff0740560d0be0e5f323 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 6 Jun 2023 10:30:19 +0200 Subject: [PATCH] font update for web & docs sites --- docs/overrides/public/main.css | 10 ++++++++++ web/_layouts/default.html | 1 + web/style.css | 4 ++++ 3 files changed, 15 insertions(+) create mode 100644 docs/overrides/public/main.css diff --git a/docs/overrides/public/main.css b/docs/overrides/public/main.css new file mode 100644 index 0000000..b106924 --- /dev/null +++ b/docs/overrides/public/main.css @@ -0,0 +1,10 @@ +@import url("https://fonts.cdnfonts.com/css/cadman"); +@import url("https://fonts.googleapis.com/css?family=Lato&display=swap"); + +body { + font-family: Lato, sans-serif; +} + +h1, h2, h3, h4, h5, h6 { + font-family: Cadman, Lato, sans-serif; +} diff --git a/web/_layouts/default.html b/web/_layouts/default.html index 5e8c84e..624730e 100644 --- a/web/_layouts/default.html +++ b/web/_layouts/default.html @@ -20,6 +20,7 @@ + diff --git a/web/style.css b/web/style.css index 40e05a7..cf9f1df 100644 --- a/web/style.css +++ b/web/style.css @@ -7,6 +7,10 @@ body { font-family: Lato, sans-serif; } +h1, h2, h3, h4, h5, h6 { + font-family: Cadman, Lato, sans-serif; +} + .navbar-container { max-width: 850px; }