diff options
author | Christian Hesse <mail@eworm.de> | 2019-10-23 22:10:45 +0000 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2022-12-19 16:57:28 +0000 |
commit | 9618ad50647d41a5313505a333502d7edd9ed07c (patch) | |
tree | 1d931680b62e54aa1854f1fd2e38bacbeee14d0d | |
parent | 8f4f4517bee9ecb92c491bb86aa17009b5645d89 (diff) | |
download | cgit-9618ad50647d41a5313505a333502d7edd9ed07c.tar cgit-9618ad50647d41a5313505a333502d7edd9ed07c.tar.gz cgit-9618ad50647d41a5313505a333502d7edd9ed07c.zip |
css: make the footer opaquech/dynamic-aging
Instead of changing the font color we add opacity to
the whole footer.
Signed-off-by: Christian Hesse <mail@eworm.de>
-rw-r--r-- | cgit.css | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -661,11 +661,12 @@ div#cgit div.footer { margin-top: 0.5em; text-align: center; font-size: 80%; - color: #ccc; + color: black; + opacity: 0.3; } div#cgit div.footer a { - color: #ccc; + color: black; text-decoration: none; } |