From 5e15ff7721ef2400746bd47ac1d84ca068d59dfc Mon Sep 17 00:00:00 2001 From: Neil Brommer Date: Tue, 28 Nov 2017 17:11:32 -0800 Subject: [PATCH] Color links to match site colors --- css/main.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/css/main.css b/css/main.css index 25499dd..5cb1020 100644 --- a/css/main.css +++ b/css/main.css @@ -16,6 +16,15 @@ body { border-bottom: var(--main-dark-color) 1px solid; } +a:not(.nav-link):not(.navbar-brand) { + color: var(--main-color); + text-decoration: underline; +} + +a:hover { + color: var(--main-light-color); +} + li.col-md-6 { padding-left: 0px; }