/
oinktechltd
/
gitserve
Обзор
Документация
Войти
/
oinktechltd
/
gitserve
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
src/index.css
175 строк
4 KB
gpt-engineer-app[bot]
Changes
14 дек 2025, 06:13
14 дек 2025, 06:13
20d885f
Код
Авторство
О чём код?
@tailwind base; @tailwind components; @tailwind utilities; @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap'); @layer base { :root { --background: 0 0% 100%; --foreground: 222.2 84% 4.9%; --card: 0 0% 100%; --card-foreground: 222.2 84% 4.9%; --popover: 0 0% 100%; --popover-foreground: 222.2 84% 4.9%; --primary: 262 83% 58%; --primary-foreground: 0 0% 100%; --secondary: 210 40% 96.1%; --secondary-foreground: 222.2 47.4% 11.2%; --muted: 210 40% 96.1%; --muted-foreground: 215.4 16.3% 46.9%; --accent: 199 89% 48%; --accent-foreground: 0 0% 100%; --destructive: 0 84.2% 60.2%; --destructive-foreground: 210 40% 98%; --border: 214.3 31.8% 91.4%; --input: 214.3 31.8% 91.4%; --ring: 262 83% 58%; --radius: 0.75rem; --gradient-start: 262 83% 58%; --gradient-end: 199 89% 48%; --gradient-accent: 330 81% 60%; --sidebar-background: 0 0% 98%; --sidebar-foreground: 240 5.3% 26.1%; --sidebar-primary: 240 5.9% 10%; --sidebar-primary-foreground: 0 0% 98%; --sidebar-accent: 240 4.8% 95.9%; --sidebar-accent-foreground: 240 5.9% 10%; --sidebar-border: 220 13% 91%; --sidebar-ring: 217.2 91.2% 59.8%; } .dark { --background: 222 47% 6%; --foreground: 210 40% 98%; --card: 222 47% 8%; --card-foreground: 210 40% 98%; --popover: 222 47% 8%; --popover-foreground: 210 40% 98%; --primary: 262 83% 65%; --primary-foreground: 0 0% 100%; --secondary: 217.2 32.6% 17.5%; --secondary-foreground: 210 40% 98%; --muted: 217.2 32.6% 17.5%; --muted-foreground: 215 20.2% 65.1%; --accent: 199 89% 55%; --accent-foreground: 0 0% 100%; --destructive: 0 62.8% 30.6%; --destructive-foreground: 210 40% 98%; --border: 217.2 32.6% 20%; --input: 217.2 32.6% 17.5%; --ring: 262 83% 65%; --gradient-start: 262 83% 65%; --gradient-end: 199 89% 55%; --gradient-accent: 330 81% 65%; --sidebar-background: 240 5.9% 10%; --sidebar-foreground: 240 4.8% 95.9%; --sidebar-primary: 224.3 76.3% 48%; --sidebar-primary-foreground: 0 0% 100%; --sidebar-accent: 240 3.7% 15.9%; --sidebar-accent-foreground: 240 4.8% 95.9%; --sidebar-border: 240 3.7% 15.9%; --sidebar-ring: 217.2 91.2% 59.8%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground font-sans antialiased; font-family: 'Inter', sans-serif; } code, pre { font-family: 'JetBrains Mono', monospace; } } @layer utilities { .gradient-text { @apply bg-clip-text text-transparent; background-image: linear-gradient(135deg, hsl(var(--gradient-start)), hsl(var(--gradient-end))); } .gradient-bg { background: linear-gradient(135deg, hsl(var(--gradient-start)), hsl(var(--gradient-end))); } .gradient-border { background: linear-gradient(135deg, hsl(var(--gradient-start)), hsl(var(--gradient-end))); -webkit-background-clip: padding-box, border-box; background-clip: padding-box, border-box; } .glass { @apply backdrop-blur-xl bg-card/80 border border-border/50; } .glow { box-shadow: 0 0 40px -10px hsl(var(--primary) / 0.5); } .glow-accent { box-shadow: 0 0 60px -15px hsl(var(--accent) / 0.4); } } @layer components { .animate-float { animation: float 6s ease-in-out infinite; } .animate-pulse-slow { animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite; } .animate-gradient { animation: gradient 8s ease infinite; background-size: 200% 200%; } } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } @keyframes gradient { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }