all repos — h3rald @ cbc1becdfd9de23dfb6c56c06dbfb1e8f29b8359

The source code of the h3rald.com web site.

removed custom fonts
h3rald h3rald@h3rald.com
Sun, 14 Jun 2026 02:46:34 +0200
commit

cbc1becdfd9de23dfb6c56c06dbfb1e8f29b8359

parent

3fa09ee751a4f9b7438018f32291e36689ff9c7c

2 files changed, 5 insertions(+), 10 deletions(-)

jump to
M assets/styles/style.cssassets/styles/style.css

@@ -22,10 +22,12 @@ :root {

--html-font-size: 18px; --base-font-size: 1rem; - --line-height: 2rem; + --line-height: 1.5; --scale-factor: 1.3333; --leading: 2rem; --letter-spacing: 0.05em; + --font-family-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif; + --font-family-mono: "JetBrains Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } .themed-content {

@@ -133,9 +135,7 @@ line-height: var(--line-height);

} body { - font-family: 'Noway', sans-serif; - font-feature-settings: "liga", "clig", "kern"; - hyphens: auto; + font-family: var(--font-family-sans); font-weight: 300; margin: auto; height: 100vh;

@@ -147,9 +147,7 @@

.grimoire, .navlinks { - font-family: 'Calendas Plus', serif; font-style: normal; - font-feature-settings: "liga", "clig", "dlig", "frac", "kern"; } .page h2 {

@@ -230,7 +228,7 @@ }

pre, code { - font-family: 'JetBrains Mono', monospace; + font-family: var(--font-family-mono); } .break-code {

@@ -305,9 +303,7 @@ blockquote,

.primary-subtitle, .secondary-subtitle, .panel-header { - font-family: 'Noway', sans-serif; font-style: italic; - font-feature-settings: "liga", "clig", "dlig", "onum", "frac", "kern"; } .body-text h1,
M templates/_head.mustachetemplates/_head.mustache

@@ -9,7 +9,6 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0">

<meta name="keywords" content="{{keywords}}"> <link rel="shortcut icon" href="/favicon.png" type="image/png"> <meta content="44.388041;9.073248" name="ICBM"> - <link rel="stylesheet" type="text/css" href="/styles/fonts.css"> <link rel="stylesheet" type="text/css" href="/styles/flexboxgrid.css"> <link rel="stylesheet" type="text/css" href="/styles/chroma.css"> <link rel="stylesheet" type="text/css" href="/styles/style.css">