diff options
author | Franck Cuny <franck@fcuny.net> | 2021-12-29 09:37:38 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2021-12-29 09:38:13 -0800 |
commit | 3f049173f221cbe4d991e4e885f4667adc10d539 (patch) | |
tree | 0ff5bad4108ad5ff06d51e2e7d4a96079fcb9edd | |
parent | blog: article on how to use tailscale + traefik (diff) | |
download | fcuny.net-3f049173f221cbe4d991e4e885f4667adc10d539.tar.gz |
css: highlight links with a background color
-rw-r--r-- | static/css/custom.css | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/static/css/custom.css b/static/css/custom.css index cbeac27..2e96fdc 100644 --- a/static/css/custom.css +++ b/static/css/custom.css @@ -21,8 +21,19 @@ hr{ height:2px } -a {color: #494d7e;} -a:visited {color: #494d7e;} +a { + color: #023; + background-color: #eee; +} +a:visited { + color: #345; + background: #eee; +} +a:hover { + color: #000; + text-decoration: none; + background:#ccf; +} span.published, span.updated { display: center; |