diff options
author | EuAndreh <eu@euandre.org> | 2020-08-13 07:21:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-13 07:22:25 -0300 |
commit | 784c565d226261f2a30a84f4eb2def979a4456a2 (patch) | |
tree | 0a58016c48e6a5a50618f3b9aef449cf8581143b | |
parent | Create Jekyll hook to add anchors to code block lines (diff) | |
download | euandre.org-784c565d226261f2a30a84f4eb2def979a4456a2.tar.gz euandre.org-784c565d226261f2a30a84f4eb2def979a4456a2.tar.xz |
styles.css: Show underline on code block anchors on hover
-rw-r--r-- | styles.css | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -102,6 +102,11 @@ pre.highlight { a.code-line-anchor { color: black; + text-decoration: none; +} + +a.code-line-anchor:hover { + text-decoration: underline; } |