From 8e4fccf48a18c470bc7b7498820ff4c09f192e76 Mon Sep 17 00:00:00 2001 From: Paul Brinkmeier Date: Fri, 3 Nov 2017 08:34:08 +0100 Subject: [PATCH] Add nicer link styling --- styles/index.css | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/styles/index.css b/styles/index.css index 3ec7677..d2ee671 100644 --- a/styles/index.css +++ b/styles/index.css @@ -17,10 +17,21 @@ body { h1, h2, h3, h4, h5, h6 { margin-top: 2em; - color: tomato; + color: #ff4136; +} + +a, +a:visited { + color: #0074d9; + text-decoration: none; +} + +a:focus, +a:hover { + text-decoration: underline; } blockquote { padding-left: 1em; - border-left: 2px solid tomato; + border-left: 2px solid #ff4136; }