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>
|
<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>
|
||||||
|
|
Reference in a new issue