first commit
All checks were successful
Deploy dzanan.net / deploy (push) Successful in 1m2s

This commit is contained in:
v7
2026-05-14 20:58:16 +02:00
commit 1599615ec7
48 changed files with 13000 additions and 0 deletions

54
src/styles.scss Normal file
View File

@@ -0,0 +1,54 @@
@use 'tailwindcss';
@theme {
--font-saira: 'Saira', sans-serif;
}
@font-face {
font-family: 'Saira';
src: url('/fonts/Saira-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Saira';
src: url('/fonts/Saira-Italic.ttf') format('truetype');
font-weight: 400;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: 'Saira';
src: url('/fonts/Saira-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Saira';
src: url('/fonts/Saira-SemiBoldItalic.ttf') format('truetype');
font-weight: 600;
font-style: italic;
font-display: swap;
}
@variant dark (&:where(.dark, .dark *));
@keyframes fade-in-up {
0% {
opacity: 0;
transform: translateY(12px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
html {
scroll-behavior: smooth;
}