File size: 3,633 Bytes
60be3de
 
 
 
 
 
fdc08ee
 
 
b8b2032
fdc08ee
b8b2032
 
 
fdc08ee
 
 
 
 
60be3de
b8b2032
60be3de
fdc08ee
b8b2032
60be3de
 
 
 
b8b2032
60be3de
b8b2032
60be3de
b8b2032
 
60be3de
 
 
 
 
b8b2032
 
60be3de
 
 
b8b2032
 
60be3de
 
 
 
b8b2032
 
 
 
 
 
 
60be3de
 
 
b8b2032
60be3de
 
 
 
 
 
 
 
b8b2032
 
 
60be3de
 
 
b8b2032
 
 
 
 
60be3de
 
 
b8b2032
60be3de
 
 
b8b2032
 
 
 
60be3de
 
 
 
 
b8b2032
 
60be3de
 
 
b8b2032
 
 
 
 
fdc08ee
 
 
b8b2032
fdc08ee
60be3de
 
 
b8b2032
 
 
60be3de
 
 
fdc08ee
b8b2032
60be3de
 
fdc08ee
 
 
b8b2032
fdc08ee
 
 
 
 
 
60be3de
b8b2032
 
 
 
 
60be3de
 
 
b8b2032
 
 
 
60be3de
 
 
 
 
b8b2032
60be3de
 
 
 
 
 
 
 
 
fdc08ee
60be3de
b8b2032
 
60be3de
 
 
 
b8b2032
60be3de
 
 
 
b8b2032
 
 
60be3de
 
 
fdc08ee
60be3de
 
 
 
b8b2032
 
 
60be3de
 
 
b8b2032
60be3de
b8b2032
60be3de
 
 
 
 
 
 
b8b2032
60be3de
b8b2032
60be3de
 
 
b8b2032
60be3de
 
b8b2032
 
60be3de
 
b8b2032
 
60be3de
 
b8b2032
 
60be3de
fdc08ee
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Home Assistant Color Palette */
	--ha-primary: #03a9f4;
	--ha-primary-dark: #0288d1;
	--ha-secondary: #4db6ac;
	--ha-accent: #ff9800;
	--ha-background: #fafafa;
	--ha-surface: #ffffff;
	--ha-text-primary: #212121;
	--ha-text-secondary: #757575;
	--ha-divider: #e0e0e0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
	color: var(--ha-text-primary);
	background: linear-gradient(180deg, var(--ha-secondary) 0%, var(--ha-primary-dark) 50%, var(--ha-primary-dark) 100%);
	min-height: 100vh;
}

.hero {
	background: linear-gradient(180deg, var(--ha-primary-dark) 0%, var(--ha-primary) 60%, transparent 100%);
	color: white;
	padding: 4rem 2rem 2rem 2rem;
	text-align: center;
	position: relative;
	margin-bottom: -4rem;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.app-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	display: inline-block;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #fff, #f0f9ff);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.tagline {
	font-size: 1.25rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	z-index: 2;
}

.main-card {
	background: var(--ha-surface);
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-bottom: 3rem;
}

.app-details {
	padding: 3rem;
}

.app-details h2 {
	font-size: 2rem;
	color: var(--ha-primary-dark);
	margin-bottom: 2rem;
	text-align: center;
}

.template-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.info-box {
	background: var(--ha-background);
	border: 2px solid var(--ha-divider);
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.info-box:hover {
	box-shadow: 0 4px 12px rgba(3, 169, 244, 0.15);
	transform: translateY(-2px);
}

.info-box h3 {
	color: var(--ha-primary-dark);
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.info-box p {
	color: var(--ha-text-secondary);
	line-height: 1.6;
}

.info-box a {
	color: var(--ha-primary);
	text-decoration: none;
	font-weight: 600;
}

.info-box a:hover {
	text-decoration: underline;
}

.how-to-use {
	background: #e3f2fd;
	border: 2px solid var(--ha-primary);
	border-radius: 12px;
	padding: 2rem;
	margin-top: 3rem;
}

.how-to-use h3 {
	color: var(--ha-primary-dark);
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
	text-align: center;
}

.steps {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.step-number {
	background: var(--ha-primary);
	color: white;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.step h4 {
	color: var(--ha-primary-dark);
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.step p {
	color: var(--ha-text-secondary);
}

.footer {
	text-align: center;
	padding: 2rem;
	color: white;
	opacity: 0.8;
}

.footer a {
	color: white;
	text-decoration: none;
	font-weight: 600;
}

.footer a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero {
		padding: 2rem 1rem;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.container {
		padding: 0 1rem;
	}

	.app-details {
		padding: 2rem;
	}

	.template-info {
		grid-template-columns: 1fr;
	}
}