feat: improve website styling

This commit is contained in:
Stijnvandenbroek
2026-03-06 14:12:43 +00:00
parent 8de47410ce
commit 81188a4569
3 changed files with 59 additions and 18 deletions

View File

@@ -11,6 +11,12 @@
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in { animation: fadeIn 0.3s ease-out; }
@keyframes slideInUp {
from { opacity: 0; transform: translateY(20px) scale(0.95); }
to { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-slide-in-up { animation: slideInUp 0.35s cubic-bezier(0.21, 1.02, 0.73, 1) forwards; }
</style>
</head>
<body class="bg-slate-50 text-slate-800 antialiased">