change some colors

This commit is contained in:
awesomeuser 2023-07-07 20:03:47 +00:00
parent 30255041b5
commit a8875b468b

View file

@ -2,6 +2,8 @@
<html> <html>
<head> <head>
<title>awesome</title>
<style> <style>
@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap');
@ -35,7 +37,13 @@
-20px 20px #1a60c9; -20px 20px #1a60c9;
} }
a { /* unvisited link */
a:link {
color: pink;
}
/* visited link */
a:visited {
color: lightgray; color: lightgray;
} }
@ -43,16 +51,6 @@
content: " (visited)"; content: " (visited)";
} }
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */ /* mouse over link */
a:hover { a:hover {
color: hotpink; color: hotpink;
@ -60,7 +58,7 @@
/* selected link */ /* selected link */
a:active { a:active {
color: blue; color: white;
} }
</style> </style>