-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (113 loc) · 3.33 KB
/
index.html
File metadata and controls
125 lines (113 loc) · 3.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ArchiCraft — AI-Powered Architectural & Interior Design Concepts</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Merriweather', 'serif'],
mono: ['Fira Code', 'monospace'],
},
colors: {
arch: {
50: '#f9fafb',
100: '#f3f4f6',
500: '#6b7280',
800: '#1f2937',
900: '#111827',
},
accent: {
light: '#fdba74',
DEFAULT: '#f97316',
dark: '#c2410c',
}
}
},
},
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Merriweather:wght@300;700&family=Fira+Code:wght@400&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #f9fafb;
}
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
-ms-overflow-style: none;
scrollbar-width: none;
}
/* --- PROFESSIONAL PRINT STYLES --- */
@media print {
@page {
margin: 10mm;
size: A4;
}
body {
background-color: white;
color: black;
font-size: 12pt;
}
/* Hide UI Elements */
header, footer, button, .no-print, nav, .info-modal-backdrop {
display: none !important;
}
/* Force Background Graphics (colors/images) to print */
* {
-webkit-print-color-adjust: exact !important;
print-color-adjust: exact !important;
}
/* Layout Adjustments */
.print-only {
display: block !important;
}
.screen-only {
display: none !important;
}
/* Ensure Grids Work */
.print-grid {
display: grid !important;
grid-template-columns: 1fr 1fr !important;
gap: 20px !important;
}
/* Break Pages Cleanly */
.page-break {
page-break-before: always;
}
.avoid-break {
page-break-inside: avoid;
}
/* Typography */
h1 { font-size: 24pt !important; color: #111827 !important; }
h2 { font-size: 18pt !important; color: #111827 !important; border-bottom: 2px solid #eee; margin-bottom: 10px; }
h3 { font-size: 14pt !important; color: #374151 !important; margin-top: 15px; }
p { line-height: 1.5; color: #4b5563 !important; }
}
/* Hide print elements on screen */
.print-only {
display: none;
}
</style>
<script type="importmap">
{
"imports": {
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"react/": "https://aistudiocdn.com/react@^19.2.1/",
"react": "https://aistudiocdn.com/react@^19.2.1",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.32.0"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>