From 0b8ed2c3d8f1faaf01a4c39eda1a14e0cc31ebd6 Mon Sep 17 00:00:00 2001 From: Emil Miler Date: Fri, 11 Dec 2020 12:26:31 +0100 Subject: [PATCH] Styles for nav and in-body anchors --- static/style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/static/style.css b/static/style.css index 8c4d389..e153406 100644 --- a/static/style.css +++ b/static/style.css @@ -28,3 +28,19 @@ aside ul { list-style-type: none; padding: 0; } +aside ul li a { + color: #000; + display: block; + padding: 0 .5em; +} +aside ul li a:hover { + background: #000; + color: #fff; + text-decoration: none; +} + +a { + color: #E1140A; + text-decoration: none; +} +a:hover { text-decoration: underline }