From 6d588c02ac8bed0a12b11bcb186e2bf85cf3ecd8 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 19 Apr 2020 13:09:29 -0400 Subject: [PATCH] Update theme headers with sans-serif font family. --- themes/even/sass/_main.scss | 3 ++- themes/even/sass/site.scss | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/themes/even/sass/_main.scss b/themes/even/sass/_main.scss index 76ffecb..930d9f1 100644 --- a/themes/even/sass/_main.scss +++ b/themes/even/sass/_main.scss @@ -32,7 +32,8 @@ main { } } - h2, h3, h4, h5, h6 { + h1, h2, h3, h4, h5, h6 { + font-family: $article-header-family; font-weight: 400; } diff --git a/themes/even/sass/site.scss b/themes/even/sass/site.scss index 56b5091..5d3fede 100644 --- a/themes/even/sass/site.scss +++ b/themes/even/sass/site.scss @@ -16,6 +16,7 @@ $mobile-navbar-height: 50px !default; $code-colour: #c7254e; $code-font-family: Consolas, Monaco, Menlo, Consolas, monospace !default; $decoration-font-family: Athelas, STHeiti, Microsoft Yahei, serif; +$article-header-family: Calibri, Arial, sans-serif; @mixin min-screen($min-width: $body-width) { @media screen and (min-width: $min-width) {