diff options
-rw-r--r-- | content/software/recommended.md | 2 | ||||
-rw-r--r-- | static/main.css | 4 | ||||
-rw-r--r-- | templates/page.html | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/content/software/recommended.md b/content/software/recommended.md index 3adcc25..e3efd37 100644 --- a/content/software/recommended.md +++ b/content/software/recommended.md @@ -2,6 +2,8 @@ title = "Recommended software" +++ +# Recommended software + * [Arch Linux](https://www.archlinux.org/), the no-nonsense Linux distribution. It's not perfect, but it has the best reward-to-effort ratio for me. diff --git a/static/main.css b/static/main.css index 0394165..b79aef8 100644 --- a/static/main.css +++ b/static/main.css @@ -12,6 +12,10 @@ a { color:#61afef; } +h1 { font-size:2rem; } +h2 { font-size:1.5rem; } +h3 { font-size:1rem; } + .content { min-height: calc(100vh - 20ch); } .navbar a:link { color:#abb2bf; } diff --git a/templates/page.html b/templates/page.html index ce0155e..8058656 100644 --- a/templates/page.html +++ b/templates/page.html @@ -3,6 +3,5 @@ {{ config.title }} | {{ page.title }} {% endblock title %} {% block content %} - <center><h3> {{ page.title }} </h3></center> {{ page.content | safe }} {% endblock content %} |