diff options
author | Peter Cai <[email protected]> | 2020-04-14 16:59:43 +0800 |
---|---|---|
committer | Peter Cai <[email protected]> | 2020-04-14 16:59:43 +0800 |
commit | 5852d86a825c1c109558e9cdab94d7d64f83b676 (patch) | |
tree | 2ba2d7a112c533865062926581ca8f51788fece2 | |
parent | 183ed102e012fa5b6dbb070586f3fb2287916783 (diff) | |
download | paprika-5852d86a825c1c109558e9cdab94d7d64f83b676.tar.gz |
theme: style links also in single-post pages
-rw-r--r-- | theme/default/static/style.css | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/theme/default/static/style.css b/theme/default/static/style.css index 25d9b30..1f7916f 100644 --- a/theme/default/static/style.css +++ b/theme/default/static/style.css @@ -291,11 +291,17 @@ blockquote { .post a:link, .post a:visited, .post a:hover, -.post a:active { +.post a:active, +.content a, +.content a:link, +.content a:visited, +.content a:hover, +.content a:active { color: #e91e63; } -.post a:hover { +.post a:hover, +.content a:hover { text-decoration: underline; } |