This commit is contained in:
Jorijn van der Graaf 2025-11-12 21:56:18 +01:00
commit 937b9fb48f
9 changed files with 180 additions and 90 deletions

View file

@ -222,6 +222,33 @@ main {
.post-content a:hover {
text-decoration: underline;
color: var(--secondary-color);
}.post-content {
font-size: 1.1rem;
line-height: 1.8;
color: #333;
animation: fadeIn 0.6s ease-out 0.2s forwards;
opacity: 0;
}
.post-content p {
margin-bottom: 1.2rem;
}
.post-content a {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: var(--transition);
}
.post-content a:hover {
text-decoration: underline;
color: var(--secondary-color);
}
.post-footer {
margin-top: 1.5rem;
text-align: right;
}
.post-content ul {