diff options
author | Milan Mišić <fridolin.411@web.de> | 2024-01-29 00:55:55 +0100 |
---|---|---|
committer | Milan Mišić <fridolin.411@web.de> | 2024-01-29 00:55:55 +0100 |
commit | 335f978dab86f847f24dbef3e927f4b776b4d60a (patch) | |
tree | d5e93137e9e2edf196a82047cd78de724068fe6f | |
parent | 754ed71d361d555af672fe2836e9438d1acbd27f (diff) |
Fixed wrong link colour
-rw-r--r-- | beauty.css | 2 | ||||
-rwxr-xr-x | beauty.scss | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -135,7 +135,7 @@ body { background-size: cover; background-attachment: fixed; } -body a { +body a:link { color: silver; } body a:visited { diff --git a/beauty.scss b/beauty.scss index 4b2abba..3c3afe0 100755 --- a/beauty.scss +++ b/beauty.scss @@ -29,7 +29,7 @@ body { background-attachment: fixed; // Link styling section - a { + a:link { color: silver; } a:visited { |