/
smaker21
/
YouTube-transcript-using-supadata
Обзор
Документация
Войти
/
smaker21
/
YouTube-transcript-using-supadata
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
app/globals.css
98 строк
2 KB
Ilya Ostapov
new file: .env.example
12 фев 2026, 18:43
12 фев 2026, 18:43
7016baa
Код
Авторство
О чём код?
@tailwind base; @tailwind components; @tailwind utilities; @layer utilities { .text-balance { text-wrap: balance; } } @layer base { :root { --background: 240 10% 4%; --foreground: 0 0% 95%; --card: 240 6% 8%; --card-foreground: 0 0% 95%; --popover: 240 6% 8%; --popover-foreground: 0 0% 95%; --primary: 142 71% 45%; --primary-foreground: 240 10% 4%; --secondary: 240 4% 14%; --secondary-foreground: 0 0% 85%; --muted: 240 4% 14%; --muted-foreground: 240 4% 55%; --accent: 142 71% 45%; --accent-foreground: 240 10% 4%; --destructive: 0 84% 60%; --destructive-foreground: 0 0% 98%; --border: 240 4% 16%; --input: 240 4% 16%; --ring: 142 71% 45%; --chart-1: 142 71% 45%; --chart-2: 160 60% 45%; --chart-3: 197 37% 24%; --chart-4: 43 74% 66%; --chart-5: 27 87% 67%; --radius: 0.625rem; --sidebar-background: 240 6% 6%; --sidebar-foreground: 0 0% 95%; --sidebar-primary: 142 71% 45%; --sidebar-primary-foreground: 240 10% 4%; --sidebar-accent: 240 4% 14%; --sidebar-accent-foreground: 0 0% 95%; --sidebar-border: 240 4% 16%; --sidebar-ring: 142 71% 45%; } } @layer base { * { @apply border-border; } body { @apply bg-background text-foreground; } } @keyframes fade-in-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes pulse-glow { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } } @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } } .animate-fade-in-up { animation: fade-in-up 0.6s ease-out forwards; } .animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; } .animate-shimmer { animation: shimmer 2s linear infinite; background-size: 200% 100%; }