diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-12-13 21:58:24 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-12-13 21:58:24 +0100 |
commit | 3fe665a2d6c453b0a25f4afd98f550a514b23705 (patch) | |
tree | 8589e0127dbc0e3668424c0aee52153d074a99c6 /templates/page.html | |
parent | 574d7d891de25ffc0b932b1d4bc5ea0367914e40 (diff) | |
download | moeka-3fe665a2d6c453b0a25f4afd98f550a514b23705.tar.gz moeka-3fe665a2d6c453b0a25f4afd98f550a514b23705.tar.bz2 moeka-3fe665a2d6c453b0a25f4afd98f550a514b23705.zip |
Restyle headings
This patch tries to add a second font to the mix which is used for
headings. It gives a bit more visual distinction between the body and
the headings.
In addition, there's now a style for h3 elements.
In the process, the style got revamped a bit, as the selectors were a
bit messy.
Diffstat (limited to 'templates/page.html')
-rw-r--r-- | templates/page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/page.html b/templates/page.html index bd8fd58..6dec3e5 100644 --- a/templates/page.html +++ b/templates/page.html @@ -3,7 +3,7 @@ {% block content %} <div class="article page" role="article" lang="{{ page.lang }}"> <article> - <h1>{{ page.title }}</h1> + <h1 class="topmost">{{ page.title }}</h1> <div class="content"> {{ page.content | safe }} |