File size: 12,290 Bytes
c32f9a6 | 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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Search - Berlin</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; color: #1f2937; }
#render-target {
width: 1080px; height: 2400px; position: relative; overflow: hidden;
background: #ffffff; border-radius: 32px;
}
/* Status bar */
.status-bar {
position: absolute; top: 0; left: 0; right: 0;
height: 84px; padding: 0 36px;
display: flex; align-items: center; justify-content: space-between;
color: #111827; font-weight: 600; font-size: 38px;
}
.status-icons { display: flex; gap: 26px; align-items: center; }
.icon { width: 44px; height: 44px; }
/* Top search section */
.search-area {
position: absolute; top: 104px; left: 0; right: 0;
padding: 0 36px;
display: flex; align-items: center; gap: 24px;
}
.back-btn {
width: 72px; height: 72px; border-radius: 36px;
display: flex; align-items: center; justify-content: center;
}
.search-input {
flex: 1; height: 100px;
border: 3px solid #1e88e5; border-radius: 50px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 32px; font-size: 44px; color: #111827;
}
.search-input .text { letter-spacing: 0.2px; }
.clear-btn {
width: 72px; height: 72px; border-radius: 36px;
border: 2px solid #bdbdbd; display: flex; align-items: center; justify-content: center;
color: #374151;
}
/* Results list */
.results {
position: absolute; top: 236px; left: 0; right: 0;
padding: 12px 36px 0;
}
.result {
display: flex; gap: 32px; align-items: center;
padding: 32px 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}
.result:last-child { border-bottom: none; }
.lead-icon {
width: 120px; height: 120px; border-radius: 28px;
background: #f1f3f5; display: flex; align-items: center; justify-content: center;
border: 1px solid #e1e5ea;
}
.result .title {
font-size: 44px; font-weight: 700; color: #1f2937; margin-bottom: 10px;
}
.result .subtitle {
font-size: 34px; color: #6b7280;
}
/* Keyboard */
.keyboard {
position: absolute; left: 0; right: 0; bottom: 72px;
height: 860px; background: #f2effa; border-top-left-radius: 26px; border-top-right-radius: 26px;
box-shadow: 0 -6px 16px rgba(0,0,0,0.06);
padding: 26px 26px 20px;
}
.suggestions {
display: flex; align-items: center; gap: 24px; margin-bottom: 22px;
}
.sugg-icon {
width: 72px; height: 72px; border-radius: 18px; background: #b7e2a7; display: flex; align-items: center; justify-content: center;
}
.chip {
height: 70px; padding: 0 26px; border-radius: 20px;
background: #ffffff; border: 1px solid #e5e7eb; color: #1f2937; font-size: 34px;
display: flex; align-items: center; justify-content: center;
}
.sugg-spacer { flex: 1; }
.mic {
width: 72px; height: 72px; border-radius: 36px; background: #ffffff; border: 1px solid #e5e7eb;
display: flex; align-items: center; justify-content: center;
}
.rows { display: flex; flex-direction: column; gap: 18px; }
.row { display: flex; gap: 16px; justify-content: center; }
.key {
width: 92px; height: 120px; border-radius: 26px;
background: #ffffff; border: 1px solid #e6e8ef; color: #1f2937; font-size: 44px; font-weight: 500;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 2px 0 #e6e8ef inset;
}
.key.pink { background: #f8d7e6; border-color: #f2c4d8; }
.key.green { background: #b7e2a7; border-color: #a2d792; }
.key.wide { width: 480px; }
.key.mid { width: 150px; }
.row.space-row { padding: 0 18px; }
/* Home indicator */
.home-indicator {
position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
width: 220px; height: 12px; border-radius: 8px; background: #cfcfcf;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>10:50</div>
<div class="status-icons">
<!-- Signal/WiFi icon -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0" fill="none" stroke="#374151" stroke-width="2" stroke-linecap="round"/>
<path d="M5 12c4-3 10-3 14 0" fill="none" stroke="#374151" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="17" r="2" fill="#374151"/>
</svg>
<!-- Battery icon -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="2" ry="2" fill="none" stroke="#374151" stroke-width="2"/>
<rect x="4" y="8" width="12" height="8" rx="1" fill="#374151"/>
<rect x="20" y="9" width="2" height="6" rx="1" fill="#374151"/>
</svg>
</div>
</div>
<!-- Search section -->
<div class="search-area">
<div class="back-btn">
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M15 5l-7 7 7 7" fill="none" stroke="#374151" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-input">
<div class="text">Berlin</div>
<div class="clear-btn">
<svg width="36" height="36" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="none" stroke="#9ca3af" stroke-width="2"/>
<path d="M8 8l8 8M16 8l-8 8" stroke="#6b7280" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Results list -->
<div class="results">
<div class="result">
<div class="lead-icon">
<!-- Building icon -->
<svg width="72" height="72" viewBox="0 0 24 24">
<rect x="6" y="4" width="12" height="16" rx="2" fill="none" stroke="#0f172a" stroke-width="2"/>
<rect x="9" y="7" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="12.5" y="7" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="9" y="11" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="12.5" y="11" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="10.5" y="16" width="3" height="4" fill="#0f172a"/>
</svg>
</div>
<div>
<div class="title">The Berlin</div>
<div class="subtitle">Property • Gandhinagar, Gujarat</div>
</div>
</div>
<div class="result">
<div class="lead-icon">
<!-- Map pin icon -->
<svg width="72" height="72" viewBox="0 0 24 24">
<path d="M12 3C8.1 3 5 6.1 5 10c0 4.8 7 10 7 10s7-5.2 7-10c0-3.9-3.1-7-7-7z" fill="none" stroke="#0f172a" stroke-width="2"/>
<circle cx="12" cy="10" r="3" fill="#0f172a"/>
</svg>
</div>
<div>
<div class="title">Berlin</div>
<div class="subtitle">City • Berlin, Germany • 495 Properties</div>
</div>
</div>
<div class="result">
<div class="lead-icon">
<!-- Map pin icon -->
<svg width="72" height="72" viewBox="0 0 24 24">
<path d="M12 3C8.1 3 5 6.1 5 10c0 4.8 7 10 7 10s7-5.2 7-10c0-3.9-3.1-7-7-7z" fill="none" stroke="#0f172a" stroke-width="2"/>
<circle cx="12" cy="10" r="3" fill="#0f172a"/>
</svg>
</div>
<div>
<div class="title">Berling</div>
<div class="subtitle">City • Berling, France</div>
</div>
</div>
<div class="result">
<div class="lead-icon">
<!-- Building icon -->
<svg width="72" height="72" viewBox="0 0 24 24">
<rect x="6" y="4" width="12" height="16" rx="2" fill="none" stroke="#0f172a" stroke-width="2"/>
<rect x="9" y="7" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="12.5" y="7" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="9" y="11" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="12.5" y="11" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="10.5" y="16" width="3" height="4" fill="#0f172a"/>
</svg>
</div>
<div>
<div class="title">Hotel Q! Berlin</div>
<div class="subtitle">Property • Berlin, Germany</div>
</div>
</div>
<div class="result">
<div class="lead-icon">
<!-- Building icon -->
<svg width="72" height="72" viewBox="0 0 24 24">
<rect x="6" y="4" width="12" height="16" rx="2" fill="none" stroke="#0f172a" stroke-width="2"/>
<rect x="9" y="7" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="12.5" y="7" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="9" y="11" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="12.5" y="11" width="2.5" height="2.5" fill="#0f172a"/>
<rect x="10.5" y="16" width="3" height="4" fill="#0f172a"/>
</svg>
</div>
<div>
<div class="title">Berlin Heritage Inn</div>
<div class="subtitle">Property • Berlin (OH), United States</div>
</div>
</div>
</div>
<!-- Keyboard -->
<div class="keyboard">
<div class="suggestions">
<div class="sugg-icon">
<svg width="36" height="36" viewBox="0 0 24 24">
<rect x="4" y="6" width="16" height="12" rx="2" fill="none" stroke="#1f2937" stroke-width="2"/>
<path d="M7 9h10M7 12h7" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
<div class="chip">Berlin</div>
<div class="chip">Berliner</div>
<div class="chip">Berl in</div>
<div class="sugg-spacer"></div>
<div class="mic">
<svg width="32" height="32" viewBox="0 0 24 24">
<rect x="9" y="3" width="6" height="10" rx="3" fill="#1f2937"/>
<path d="M5 11c0 4 3.5 6 7 6s7-2 7-6" fill="none" stroke="#1f2937" stroke-width="2"/>
<path d="M12 17v4" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/>
<path d="M9 21h6" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="rows">
<div class="row">
<div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
</div>
<div class="row">
<div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
<div class="key pink">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M4 4l16 16M20 4L4 20" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="row">
<div class="key pink">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M6 18l-3-3 3-3" stroke="#1f2937" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
<div class="key pink">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M6 6h9l3 3v9a3 3 0 0 1-3 3H6" fill="none" stroke="#1f2937" stroke-width="2"/>
<path d="M10 15l4-4M14 15l-4-4" stroke="#1f2937" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="row space-row">
<div class="key pink mid">?123</div>
<div class="key mid">,</div>
<div class="key mid">
<svg width="36" height="36" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="4" fill="#1f2937"/>
</svg>
</div>
<div class="key wide"></div>
<div class="key mid">.</div>
<div class="key green mid">
<svg width="36" height="36" viewBox="0 0 24 24">
<path d="M5 12h10M11 6l6 6-6 6" fill="none" stroke="#1f2937" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
</div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html> |