2026-06-14 15:36:44 +02:00
|
|
|
@import "tailwindcss";
|
|
|
|
|
@import "flag-icons/css/flag-icons.min.css";
|
|
|
|
|
|
2026-06-14 16:26:25 +02:00
|
|
|
@source "*.{ts,tsx}";
|
|
|
|
|
@source "../app/groups/*.{ts,tsx}";
|
|
|
|
|
@source "../app/history/*.{ts,tsx}";
|
|
|
|
|
@source "../app/players/[name]/*.{ts,tsx}";
|
|
|
|
|
@source "../app/search/*.{ts,tsx}";
|
|
|
|
|
@source "../app/stats/*.{ts,tsx}";
|
|
|
|
|
@source "../app/teams/[slug]/*.{ts,tsx}";
|
|
|
|
|
@source "../app/tournaments/[year]/*.{ts,tsx}";
|
|
|
|
|
@source "../components/*.{ts,tsx}";
|
|
|
|
|
@source "../lib/*.{ts,tsx}";
|
|
|
|
|
@source "../lib/db/*.{ts,tsx}";
|
|
|
|
|
@source "../lib/graphql/*.{ts,tsx}";
|
|
|
|
|
@source "../lib/graphql/resolvers/*.{ts,tsx}";
|
2026-06-14 16:22:13 +02:00
|
|
|
|
2026-06-14 15:36:44 +02:00
|
|
|
@theme inline {
|
|
|
|
|
--color-bg: #040d08;
|
|
|
|
|
--color-card: #0a1810;
|
|
|
|
|
--color-hero: #0d2416;
|
|
|
|
|
--color-green: #22c55e;
|
|
|
|
|
--color-green-light: #4ade80;
|
|
|
|
|
--color-green-sec: #6abf7a;
|
|
|
|
|
--color-green-muted: #2a5c35;
|
|
|
|
|
--color-green-dark: #1a3a22;
|
|
|
|
|
--color-text: #dff5e8;
|
|
|
|
|
--color-border: rgba(34,197,94,0.15);
|
|
|
|
|
|
|
|
|
|
--font-display: "Bebas Neue", cursive;
|
|
|
|
|
--font-body: "Space Grotesk", system-ui, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
|
|
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background: #040d08;
|
|
|
|
|
color: #dff5e8;
|
|
|
|
|
font-family: "Space Grotesk", system-ui, sans-serif;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::-webkit-scrollbar { width: 5px; }
|
|
|
|
|
::-webkit-scrollbar-track { background: #020a04; }
|
|
|
|
|
::-webkit-scrollbar-thumb { background: rgba(34,197,94,0.25); border-radius: 4px; }
|
|
|
|
|
|
|
|
|
|
@keyframes livePulse {
|
|
|
|
|
0%, 100% { opacity: 1; transform: scale(1); }
|
|
|
|
|
50% { opacity: 0.2; transform: scale(0.6); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
from { opacity: 0; transform: translateY(8px); }
|
|
|
|
|
to { opacity: 1; transform: translateY(0); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.animate-live { animation: livePulse 2s ease-in-out infinite; }
|
|
|
|
|
.animate-fade-in { animation: fadeIn 0.3s ease-out; }
|
|
|
|
|
|
|
|
|
|
.pitch-grid {
|
|
|
|
|
background-image: repeating-linear-gradient(
|
|
|
|
|
0deg,
|
|
|
|
|
transparent,
|
|
|
|
|
transparent 44px,
|
|
|
|
|
rgba(34,197,94,0.018) 44px,
|
|
|
|
|
rgba(34,197,94,0.018) 88px
|
|
|
|
|
);
|
|
|
|
|
}
|