This commit is contained in:
mileswolfallen2
2023-10-03 16:04:10 +00:00
committed by GitHub
parent b2e73a6686
commit f0cc326e0b
+12 -19
View File
@@ -10,22 +10,15 @@ body {
a {
color: hotpink;
}
/* unvisited link */
a:link {
color: red;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: blue;
}
a:link, a:visited {
background-color: #f44336;
color: white;
padding: 14px 25px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active {
background-color: red;
}