From 1c026815ccc4bead75c58a5391d28681beb8bf02 Mon Sep 17 00:00:00 2001 From: meaz Date: Sun, 9 Feb 2020 12:55:22 +0100 Subject: [PATCH] Add lighter class to fix links color when bkground is darker, ex: disapp --- css/defaults.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/css/defaults.css b/css/defaults.css index cbb753e..da7d0ea 100644 --- a/css/defaults.css +++ b/css/defaults.css @@ -347,6 +347,20 @@ a, a:visited { a:hover, a:focus { color: #438f93; } p a, p a:visited { line-height: inherit; } + +a.lighter, a.lighter:visited { + text-decoration: none; + outline: 0; + color: #8EB726; + + -webkit-transition: color .3s ease-in-out; + -moz-transition: color .3s ease-in-out; + -o-transition: color .3s ease-in-out; + transition: color .3s ease-in-out; +} + +a.lighter:hover, a.lighter:focus { color: #50162D; } + /* Lists */ ul, ol { margin-bottom: 24px; margin-top: 12px; }