Tweak dark mode link colors so it's more intuitive by having blue for unclicked and a purple-ish color for clicked links

This commit is contained in:
Anthony Wang 2023-09-14 17:21:01 +00:00
parent 5c47b7ac30
commit b2100e9860
Signed by: a
SSH key fingerprint: SHA256:B5ADfMCqd2M7d/jtXDoihAV/yfXOAbWWri9+GdCN4hQ
2 changed files with 3 additions and 17 deletions

View file

@ -29,7 +29,7 @@
</div> </div>
<br> <br>
<div class="info"> <div class="info">
<em><a href="https://sfconservancy.org/blog/2022/jun/30/give-up-github-launch/">#GiveUpGitHub!</a></em> Join us for libre code hosting, or even better, contribute to <a href="https://nlnet.nl/project/Gitea/">forge federation development</a>. <a href="https://sfconservancy.org/blog/2022/jun/30/give-up-github-launch/">#GiveUpGitHub!</a> Join us for libre code hosting, or even better, contribute to <a href="https://nlnet.nl/project/Gitea/">forge federation development</a>.
</div> </div>
</body> </body>
</html> </html>

View file

@ -6,10 +6,6 @@ body {
text-align: center; text-align: center;
} }
pre {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
}
h4 { h4 {
text-align: left; text-align: left;
} }
@ -19,14 +15,6 @@ p {
line-height: 150%; line-height: 150%;
} }
a:link {
color: green;
font-weight: bold;
}
a:visited {
color: seagreen;
}
picture, img { picture, img {
border-radius: 0.5em; border-radius: 0.5em;
max-width: 100%; max-width: 100%;
@ -60,7 +48,6 @@ picture, img {
text-align: left; text-align: left;
background: lightgreen; background: lightgreen;
border-radius: 0.5em; border-radius: 0.5em;
color: black;
padding: 1em; padding: 1em;
width: 50%; width: 50%;
} }
@ -72,13 +59,12 @@ picture, img {
color: #cccccc; color: #cccccc;
} }
a:link { a:link {
color: mediumaquamarine; color: skyblue;
} }
a:visited { a:visited {
color: mediumseagreen; color: pink;
} }
.info { .info {
background: darkslategray; background: darkslategray;
color: white;
} }
} }