92 lines
3.0 KiB
HTML
92 lines
3.0 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>CondoPay Manager</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
blue: {
|
|
50: 'var(--color-primary-50)',
|
|
100: 'var(--color-primary-100)',
|
|
200: 'var(--color-primary-200)',
|
|
300: 'var(--color-primary-300)',
|
|
400: 'var(--color-primary-400)',
|
|
500: 'var(--color-primary-500)',
|
|
600: 'var(--color-primary-600)',
|
|
700: 'var(--color-primary-700)',
|
|
800: 'var(--color-primary-800)',
|
|
900: 'var(--color-primary-900)',
|
|
950: 'var(--color-primary-950)',
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
:root {
|
|
/* Default Blue Palette (Tailwind Standard colors) - Fallback immediato */
|
|
--color-primary-50: #eff6ff;
|
|
--color-primary-100: #dbeafe;
|
|
--color-primary-200: #bfdbfe;
|
|
--color-primary-300: #93c5fd;
|
|
--color-primary-400: #60a5fa;
|
|
--color-primary-500: #3b82f6;
|
|
--color-primary-600: #2563eb;
|
|
--color-primary-700: #1d4ed8;
|
|
--color-primary-800: #1e40af;
|
|
--color-primary-900: #1e3a8a;
|
|
--color-primary-950: #172554;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8fafc;
|
|
}
|
|
/* Force Colors for inputs/selects to avoid white-on-white issues */
|
|
select, input, textarea {
|
|
color: #334155 !important; /* slate-700 */
|
|
background-color: #ffffff !important;
|
|
}
|
|
select option {
|
|
color: #334155 !important;
|
|
background-color: #ffffff !important;
|
|
}
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
</style>
|
|
<script type="importmap">
|
|
{
|
|
"imports": {
|
|
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.556.0",
|
|
"react-router-dom": "https://aistudiocdn.com/react-router-dom@^7.10.1",
|
|
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
|
|
"vite": "https://aistudiocdn.com/vite@^7.2.6",
|
|
"@vitejs/plugin-react": "https://aistudiocdn.com/@vitejs/plugin-react@^5.1.1",
|
|
"react/": "https://aistudiocdn.com/react@^19.2.1/",
|
|
"react": "https://aistudiocdn.com/react@^19.2.1",
|
|
"@paypal/react-paypal-js": "https://aistudiocdn.com/@paypal/react-paypal-js@^8.9.2"
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/index.tsx"></script>
|
|
</body>
|
|
</html>
|