feat(website): enhance transitions and styles

This commit is contained in:
Bjorn Lammers
2025-04-17 05:29:49 +02:00
committed by Thomas Camlong
parent 0e22539f06
commit 6e3a39a4cf
10 changed files with 126 additions and 86 deletions

View File

@@ -64,7 +64,7 @@
}
:root {
--radius: 0.3rem;
--radius: 0.75rem;
--background: oklch(1 0 0);
--foreground: oklch(0.141 0.005 285.823);
--card: oklch(1 0 0);
@@ -140,3 +140,21 @@
@apply bg-background text-foreground;
}
}
@layer utilities {
.hover-lift {
@apply transition-transform duration-300 hover:-translate-y-1;
}
.soft-shadow {
@apply shadow-[0_8px_30px_rgba(0,0,0,0.06)];
}
.card-hover {
@apply transition-all duration-300 hover:shadow-md;
}
.glass-effect {
@apply backdrop-blur-sm;
}
}