diff options
| -rw-r--r-- | static/style.css | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/static/style.css b/static/style.css index 2e5d84d..95ea26c 100644 --- a/static/style.css +++ b/static/style.css @@ -76,6 +76,11 @@ html { a, a:visited { color: var(--link-color); + text-decoration: none; +} + +a:hover { + text-decoration: underline !important; } blockquote { @@ -109,10 +114,6 @@ blockquote { font-weight: 700; } -.page-title:hover { - text-decoration: underline; -} - code { padding: 8px 10px; background-color: var(--code-bg-color); @@ -147,11 +148,11 @@ figure { } figure img { - margin-bottom: 10px; + margin: 10px 0; } figure figcaption { - margin-bottom: 10px; + margin: -10px 0 10px; color: var(--blockquote-color); } |
