fix fonts

This commit is contained in:
Mylloon 2023-10-16 09:19:35 +02:00
parent 27838cf02d
commit 61b4e8570a
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
3 changed files with 2 additions and 4 deletions

View file

@ -200,7 +200,6 @@ table.hljs-ln {
/* Footnotes */
.footnotes a {
font-family: "Segoe UI";
text-decoration: underline dotted;
}

View file

@ -19,5 +19,5 @@
/* Global parameters */
:root {
--font-size: 1.15rem;
--font-family: "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol";
--font-family: "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol", system-ui;
}

View file

@ -1,7 +1,7 @@
/* Theme of the pages */
html {
background-color: var(--background);
font-family: "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol", system-ui;
font-family: var(--font-family);
}
body,
@ -23,7 +23,6 @@ main {
position: relative;
font-size: var(--font-size);
padding: 2em 1em;
font-family: var(--font-family);
margin: 0 auto;
max-width: 640px; /* breakpoint */
}