dark mode

This commit is contained in:
Jorijn van der Graaf 2025-11-12 22:11:56 +01:00
commit f465e9e367
2 changed files with 15 additions and 5 deletions

View file

@ -166,6 +166,9 @@ main {
opacity: 0;
transform: translateY(20px);
animation-fill-mode: forwards;
position: relative;
overflow: hidden;
cursor: pointer;
}
.post:nth-child(1) { animation-delay: 0.1s; }
@ -241,6 +244,11 @@ main {
margin-bottom: 0.5rem;
}
/* Make entire blog post card clickable */
.post:hover {
cursor: pointer;
}
/* Footer */
footer {
background-color: var(--dark-color);