Add lighter class to fix links color when bkground is darker, ex: disapp

This commit is contained in:
meaz 2020-02-09 12:55:22 +01:00
parent b750298261
commit 1c026815cc
1 changed files with 14 additions and 0 deletions

View File

@ -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; }