feat: enhance Open Graph and Twitter Card metadata; improve tab display logic and animations

This commit is contained in:
Vxrtrauter
2026-04-10 13:29:41 +02:00
parent 4203969051
commit 1f5e33f975
2 changed files with 53 additions and 1 deletions
+21
View File
@@ -65,6 +65,27 @@ main {
padding: 3rem;
}
/* Hide all tabs by default to prevent flash on page load */
.tabcontent {
display: none;
}
/* Tab switch animation */
@keyframes tabFadeIn {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.tabcontent.tab-animate {
animation: tabFadeIn 0.3s ease-out forwards;
}
main h1.hometitle {
font-size: 4.0rem;
line-height: 4rem;