diff --git a/layouts/index.html b/layouts/index.html index d908598..1dcb55f 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -6,6 +6,9 @@ type="application/rss+xml" href="{{.Site.BaseURL }}/index.xml" title="{{ .Site.Title }}"> + + +
diff --git a/themes/risotto/static/css/header.css b/themes/risotto/static/css/header.css index cab735b..f847b1c 100644 --- a/themes/risotto/static/css/header.css +++ b/themes/risotto/static/css/header.css @@ -1,3 +1,9 @@ +.main.nav { + font-family: var(--font-monospace); + font-size: 16px; + line-height: 1.5rem; +} + /* Main menu */ .main-nav ul { display: flex; diff --git a/themes/risotto/static/css/typography.css b/themes/risotto/static/css/typography.css index 198619a..6b7a36e 100644 --- a/themes/risotto/static/css/typography.css +++ b/themes/risotto/static/css/typography.css @@ -1,10 +1,11 @@ /* Fonts */ :root { --font-monospace: "Fira Mono", monospace; + --font-sans: "Open Sans", sans-serif; } body { - font-family: var(--font-monospace); +font-family: var(--font-sans); font-size: 16px; line-height: 1.5rem; }