1

Use a clean font for the body text

This commit is contained in:
Evan Pratten 2023-10-23 11:07:31 -04:00
parent 719b918dae
commit b65d7944c6
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,9 @@
p,
li,
span {
font-family: "Open Sans", serif;
}
p {
margin-top: 0;
margin-bottom: 16px;

View File

@ -42,6 +42,11 @@
<meta property="og:title" content="{{title}} - {{config.title}}" />
{% if page.path %}<meta property="og:type" content="article" />{% endif %}
{# Fonts #}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
{# Allow pages to import custom CSS if they need #}
{% for url in extra.css_import | default(value=[]) %}
<link rel="stylesheet" href="{{url}}"> <!-- Requested by Page -->