Change link brightness when hovering on search screen

merge-requests/8/head
Bob Mottram 2020-09-04 10:33:43 +01:00
parent 94d2e84bfb
commit 5db888574c
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,7 @@
--link-bg-color: #282c37;
--main-fg-color: #dddddd;
--main-link-color: #999;
--main-link-color-hover: #bbb;
--main-visited-color: #888;
--border-color: #505050;
--font-size-header: 18px;
@ -69,6 +70,10 @@ a:link {
font-weight: bold;
}
a:link:hover {
color: var(--main-link-color-hover);
}
a:focus {
border: 2px solid var(--focus-color);
}