diff options
Diffstat (limited to 'assets')
-rw-r--r-- | assets/static/css/style.css (renamed from assets/style.css) | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/assets/style.css b/assets/static/css/style.css index b6d506f..81ea8bd 100644 --- a/assets/style.css +++ b/assets/static/css/style.css @@ -115,12 +115,24 @@ blockquote, ol, p, pre, ul, .highlight { } .link { - color: #0091ea; text-underline-offset: 3px; } -.link:hover { - background-color: #004eff; +.link--internal { + color: #0091ea; +} + +.link--internal:hover { + background-color: #0091ea; + color: black; +} + +.link--external { + color: #9370DB; +} + +.link--external:hover { + background-color: #9370DB; color: black; } |