diff options
Diffstat (limited to 'assets/style.css')
-rw-r--r-- | assets/style.css | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/assets/style.css b/assets/style.css index 5bd6b33..81ea8bd 100644 --- a/assets/style.css +++ b/assets/style.css @@ -115,15 +115,27 @@ blockquote, ol, p, pre, ul, .highlight { } .link { - color: #0091ea; text-underline-offset: 3px; } -.link:hover { +.link--internal { + color: #0091ea; +} + +.link--internal:hover { background-color: #0091ea; color: black; } +.link--external { + color: #9370DB; +} + +.link--external:hover { + background-color: #9370DB; + color: black; +} + .list { list-style: none; padding-left: 0; |