Add: Vel added an underline for hyperlinks when hooverd over.

This commit is contained in:
2025-09-25 21:44:46 +02:00
parent 346f7a0a82
commit f22326fc95

View File

@@ -62,6 +62,21 @@ a {
text-decoration: none;
color: #447fc6;
}
/* Underlines the hyperlinks */
::selection {
color: #000000;
background: #a57ae9
}
a::selection {
color: #000;
background: #447fc6
}
a:not(:has(img)):hover {
text-decoration: underline
}
/* End of the code which makes hyperlink usable */
/* The Css for the article website */
.article {