diff options
author | EuAndreh <eu@euandre.org> | 2025-04-29 10:26:20 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2025-04-29 10:54:51 -0300 |
commit | 6319a2f5d0c3c5e6db4d6a60e5da61f6dc3b13f3 (patch) | |
tree | e3777cc612d7b1e8e9d2c2074cf0e3d6c666fa91 /src/content/style.css | |
parent | Makefile: Support flac -> ogg conversion and torrent file generation (diff) | |
download | euandre.org-6319a2f5d0c3c5e6db4d6a60e5da61f6dc3b13f3.tar.gz euandre.org-6319a2f5d0c3c5e6db4d6a60e5da61f6dc3b13f3.tar.xz |
Diffstat (limited to 'src/content/style.css')
-rw-r--r-- | src/content/style.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/content/style.css b/src/content/style.css index cbe615b..dbd7967 100644 --- a/src/content/style.css +++ b/src/content/style.css @@ -5,6 +5,8 @@ --color-2nd-bg: #f5f5f5; --color-pre-border: hsla(0, 100%, 0%, 30%); + --link-url: url(img/link/light.svg); + color: var(--color-fg); background-color: var(--color-bg); } @@ -16,6 +18,8 @@ --color-2nd-fg: #aaaaaa; --color-2nd-bg: #222222; --color-pre-border: hsla(50, 100%, 70%, 10%); + + --link-url: url(img/link/dark.svg); } a { @@ -192,7 +196,7 @@ div.header-anchor:hover img { } a.anchor { - background: transparent url(img/link/light.svg) center right no-repeat; + background: transparent var(--link-url) center right no-repeat; padding-right: 22px; margin-left: 10px; visibility: hidden; |