aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-13 07:21:12 -0300
committerEuAndreh <eu@euandre.org>2020-08-13 07:22:25 -0300
commit784c565d226261f2a30a84f4eb2def979a4456a2 (patch)
tree0a58016c48e6a5a50618f3b9aef449cf8581143b
parentCreate Jekyll hook to add anchors to code block lines (diff)
downloadeuandre.org-784c565d226261f2a30a84f4eb2def979a4456a2.tar.gz
euandre.org-784c565d226261f2a30a84f4eb2def979a4456a2.tar.xz
styles.css: Show underline on code block anchors on hover
-rw-r--r--styles.css5
1 files changed, 5 insertions, 0 deletions
diff --git a/styles.css b/styles.css
index 5d8ff58..68444ae 100644
--- a/styles.css
+++ b/styles.css
@@ -102,6 +102,11 @@ pre.highlight {
a.code-line-anchor {
color: black;
+ text-decoration: none;
+}
+
+a.code-line-anchor:hover {
+ text-decoration: underline;
}