From 6351c8b05e1abc15b51bc89a1a612995ea4029f5 Mon Sep 17 00:00:00 2001 From: Midgard Date: Tue, 15 Sep 2020 21:48:02 +0200 Subject: [PATCH] Color links --- content/stylesheets/main.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/content/stylesheets/main.css b/content/stylesheets/main.css index 673894e..753830d 100644 --- a/content/stylesheets/main.css +++ b/content/stylesheets/main.css @@ -27,6 +27,10 @@ body { font-family: futura, Avenir Next, Verdana, Geneva, Tahoma, sans-serif; } +a { + color: inherit; +} + main { margin-left: 5rem; display: flex; @@ -46,6 +50,16 @@ footer { margin: 0 auto; } +details { + margin-bottom: 1rem; +} +summary { + cursor: pointer; +} +details[open] { + border-bottom: 1px solid #000; +} + .align { max-width: 1280px; }