change some colors
This commit is contained in:
parent
30255041b5
commit
a8875b468b
1 changed files with 10 additions and 12 deletions
22
index.html
22
index.html
|
@ -2,6 +2,8 @@
|
|||
<html>
|
||||
<head>
|
||||
|
||||
<title>awesome</title>
|
||||
|
||||
<style>
|
||||
|
||||
@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap');
|
||||
|
@ -35,7 +37,13 @@
|
|||
-20px 20px #1a60c9;
|
||||
}
|
||||
|
||||
a {
|
||||
/* unvisited link */
|
||||
a:link {
|
||||
color: pink;
|
||||
}
|
||||
|
||||
/* visited link */
|
||||
a:visited {
|
||||
color: lightgray;
|
||||
}
|
||||
|
||||
|
@ -43,16 +51,6 @@
|
|||
content: " (visited)";
|
||||
}
|
||||
|
||||
/* unvisited link */
|
||||
a:link {
|
||||
color: red;
|
||||
}
|
||||
|
||||
/* visited link */
|
||||
a:visited {
|
||||
color: green;
|
||||
}
|
||||
|
||||
/* mouse over link */
|
||||
a:hover {
|
||||
color: hotpink;
|
||||
|
@ -60,7 +58,7 @@
|
|||
|
||||
/* selected link */
|
||||
a:active {
|
||||
color: blue;
|
||||
color: white;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
Reference in a new issue