Verified Commit d04f5c36 authored by Jakob Moser's avatar Jakob Moser
Browse files

Use Fira Code as monospace font in most places

parent 08e421ad
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
 * Author: personads :: Maximilian Müller-Eberstein (ursprüngliche Version und Design); Jakob Moser
 * Author URI: https://personads.me/
 *
 * Version: 2.7.0
 * Version: 2.8.0
 * Requires PHP: 8.0
 *
 * License: GNU General Public License v3.0
@@ -88,6 +88,7 @@ body > aside.levitating {
body > header,
body > footer {
    font-family: var(--monospace);
    font-size: var(--monospace-font-size);
}

body > header {
@@ -367,6 +368,7 @@ article > header h3 a,
    box-shadow: 0 0 3px var(--shadow-color);
    text-align: left;
    font-family: var(--monospace);
    font-size: var(--monospace-font-size);
    font-weight: normal;
    color: #fff;
    margin-bottom: -2.5em;
+5 −2
Original line number Diff line number Diff line
@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Nunito/nunito.css");
@import url("https://cdn.fachschaft.cl.uni-heidelberg.de/fonts/lib/Fira_Code/fira_code.css");

body {
    /* Variables */
@@ -9,7 +10,8 @@ body {
    --background-color: #ffffff;
    --shadow-color: #424242;
    --sans-serif: "Nunito", sans-serif;
    --monospace: "Inconsolata", monospace;
    --monospace: "Fira Code", monospace;
    --monospace-font-size: 84%;

    /* Font and appearance */
    font-family: var(--sans-serif);
@@ -47,7 +49,7 @@ a img {
}

h1 {
    font-size: 1.75em;
    font-size: 140%;
    font-weight: normal;
    font-family: var(--monospace);
}
@@ -59,6 +61,7 @@ h2 {
}

h3 {
    font-size: 95%;
    margin-bottom: 10px;
}