Fixed color on link in the deep dive.

This commit is contained in:
2025-07-25 23:31:05 +02:00
parent 8448ff1897
commit 3499cecb8b

View File

@@ -318,6 +318,17 @@
tr:nth-child(10) td.ticker {
color: #d1d5db;
}
.post-card a {
color: #93c5fd;
text-decoration: none;
transition: color 0.2s, text-decoration 0.2s;
}
.post-card a:hover {
color: #ffffff;
text-decoration: underline;
}
</style>
</head>