chore(site): added site

This commit is contained in:
Nicholas Kissel 2026-01-25 19:07:05 -08:00
parent 29b159ca20
commit d5b5efebb6
41 changed files with 1887 additions and 43 deletions

View file

@ -0,0 +1,40 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
@apply bg-black text-white antialiased;
font-family: 'Open Sans', system-ui, sans-serif;
}
::selection {
@apply bg-accent/30 text-white;
}
::-webkit-scrollbar {
@apply w-2;
}
::-webkit-scrollbar-track {
@apply bg-zinc-900;
}
::-webkit-scrollbar-thumb {
@apply bg-zinc-700 rounded-full;
}
::-webkit-scrollbar-thumb:hover {
@apply bg-zinc-600;
}
}
@layer components {
.glass {
@apply bg-white/[0.02] backdrop-blur-md border border-white/10;
}
.glass-hover {
@apply hover:bg-white/[0.04] hover:border-white/20 transition-all;
}
}