From 2dde99ef0d049dfe4fc77323cf3b12b2e3b1d85a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Such=C3=A1nek?= Date: Tue, 16 Jan 2018 19:17:37 +0100 Subject: [PATCH] Changed the color of links to match the theme color as in the header --- style.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/style.css b/style.css index 8017416..921323e 100644 --- a/style.css +++ b/style.css @@ -12,3 +12,19 @@ h1, h2, h3 { line-height: 1.2; } +a { + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +a:link { + color: #009dbb; +} + +a:visited { + color: #36738a; +} +