File size: 9,550 Bytes
ff1f000 | 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 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
body { margin:0; padding:0; background:transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color:#0f2d3f; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#ffffff;
}
/* Status bar */
.status-bar {
height:110px; padding:0 36px;
display:flex; align-items:center; justify-content:space-between;
color:#37474f; font-weight:600; font-size:40px;
}
.status-icons { display:flex; align-items:center; gap:28px; }
.icon { display:inline-flex; align-items:center; justify-content:center; }
/* Search header */
.search-row {
display:flex; align-items:center;
padding:24px 32px 16px 24px;
}
.close-btn {
width:88px; height:88px; border-radius:44px; display:flex; align-items:center; justify-content:center;
color:#7c8f9b;
}
.search-field {
flex:1;
height:120px;
margin-left:12px;
border:2px solid #c4d0da;
border-radius:30px;
display:flex; align-items:center;
padding:0 32px;
box-shadow: 0 2px 0 rgba(0,0,0,0.04);
color:#90a4ae;
font-size:44px;
}
.search-field .sf-icon { margin-right:20px; color:#7c9cc6; }
.search-placeholder { color:#8da3b2; }
/* Current location pill */
.current-location {
margin:20px 36px;
background:#e8f2ff;
color:#1a73e8;
border-radius:28px;
height:140px;
display:flex; align-items:center;
padding:0 28px;
font-weight:700; font-size:44px;
gap:24px;
}
.section-title {
margin:38px 36px 14px 36px;
color:#7f94a5; font-size:38px; font-weight:700;
}
.divider { height:2px; background:#e1e7ee; margin:0 36px 10px 36px; }
/* List items */
.list { padding:10px 36px 0 36px; }
.item {
display:flex; align-items:flex-start; gap:28px;
padding:26px 0;
}
.item .title { font-weight:900; font-size:48px; color:#0d2f42; }
.item .subtitle { font-size:40px; color:#8fa2b2; margin-top:6px; }
.building-icon, .pin-icon { color:#7f9bb0; }
/* Recently searched header */
.recent-header {
display:flex; align-items:center; justify-content:space-between;
margin:42px 36px 8px 36px;
}
.clear-link { color:#1a73e8; font-weight:800; font-size:36px; }
/* Gesture pill */
.gesture-area {
position:absolute; left:0; right:0; bottom:0; height:150px; background:#000;
display:flex; align-items:center; justify-content:center;
}
.gesture-bar {
width:300px; height:12px; background:#dcdcdc; border-radius:6px;
}
/* SVG default color */
svg { fill:currentColor; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>2:48</div>
<div class="status-icons">
<!-- Mail icon -->
<svg width="46" height="46" viewBox="0 0 24 24" class="icon" aria-hidden="true">
<path d="M3 5h18v14H3zM4.5 6.5l7.5 6 7.5-6" stroke="currentColor" stroke-width="1.5" fill="none"/>
</svg>
<!-- Cast icon -->
<svg width="46" height="46" viewBox="0 0 24 24" class="icon" aria-hidden="true">
<path d="M3 5h18v12H3z" fill="none" stroke="currentColor" stroke-width="1.4"/>
<circle cx="4.5" cy="18.5" r="1.5"/>
<path d="M3 16c3 0 5 2 5 5" stroke="currentColor" stroke-width="1.4" fill="none"/>
</svg>
<!-- Signal icon -->
<svg width="46" height="46" viewBox="0 0 24 24" class="icon" aria-hidden="true">
<path d="M3 17h2M7 13h2M11 9h2M15 5h2" stroke="currentColor" stroke-width="2" />
</svg>
<!-- Battery icon -->
<svg width="46" height="46" viewBox="0 0 24 24" class="icon" aria-hidden="true">
<path d="M2 8h18v8H2zM20 10h2v4h-2z" fill="none" stroke="currentColor" stroke-width="1.6"/>
<rect x="4" y="10" width="12" height="4" fill="currentColor"/>
</svg>
</div>
</div>
<!-- Search row -->
<div class="search-row">
<div class="close-btn" aria-label="Close">
<svg width="52" height="52" viewBox="0 0 24 24">
<path d="M5 5l14 14M19 5L5 19" stroke="currentColor" stroke-width="2" fill="none" />
</svg>
</div>
<div class="search-field">
<div class="sf-icon">
<svg width="56" height="56" viewBox="0 0 24 24">
<path d="M12 2C8.1 2 5 5.1 5 9c0 5.4 7 11 7 11s7-5.6 7-11c0-3.9-3.1-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/>
</svg>
</div>
<div class="search-placeholder">Going to...</div>
</div>
</div>
<!-- Current location pill -->
<div class="current-location">
<div class="icon">
<svg width="60" height="60" viewBox="0 0 24 24">
<path d="M12 3v3M12 18v3M3 12h3M18 12h3" stroke="currentColor" stroke-width="1.6" fill="none"/>
<circle cx="12" cy="12" r="7" fill="none" stroke="currentColor" stroke-width="1.6"/>
<circle cx="12" cy="12" r="2.4" />
</svg>
</div>
<div>Use current location</div>
</div>
<!-- Popular destinations -->
<div class="section-title">Popular destinations</div>
<div class="divider"></div>
<div class="list">
<div class="item">
<div class="icon building-icon">
<svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
<rect x="4" y="3" width="14" height="18" rx="2" fill="none" stroke="currentColor" stroke-width="1.6"/>
<rect x="6.5" y="6" width="3" height="3"/>
<rect x="11" y="6" width="3" height="3"/>
<rect x="6.5" y="10.5" width="3" height="3"/>
<rect x="11" y="10.5" width="3" height="3"/>
<rect x="6.5" y="15" width="3" height="3"/>
<rect x="11" y="15" width="3" height="3"/>
</svg>
</div>
<div>
<div class="title">Paris</div>
<div class="subtitle">Ile-de-France, France</div>
</div>
</div>
<div class="item">
<div class="icon building-icon">
<svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
<rect x="4" y="3" width="14" height="18" rx="2" fill="none" stroke="currentColor" stroke-width="1.6"/>
<rect x="6.5" y="6" width="3" height="3"/>
<rect x="11" y="6" width="3" height="3"/>
<rect x="6.5" y="10.5" width="3" height="3"/>
<rect x="11" y="10.5" width="3" height="3"/>
<rect x="6.5" y="15" width="3" height="3"/>
<rect x="11" y="15" width="3" height="3"/>
</svg>
</div>
<div>
<div class="title">Charleroi</div>
<div class="subtitle">Walloon Brabant, Belgium</div>
</div>
</div>
<div class="item">
<div class="icon building-icon">
<svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
<rect x="4" y="3" width="14" height="18" rx="2" fill="none" stroke="currentColor" stroke-width="1.6"/>
<rect x="6.5" y="6" width="3" height="3"/>
<rect x="11" y="6" width="3" height="3"/>
<rect x="6.5" y="10.5" width="3" height="3"/>
<rect x="11" y="10.5" width="3" height="3"/>
<rect x="6.5" y="15" width="3" height="3"/>
<rect x="11" y="15" width="3" height="3"/>
</svg>
</div>
<div>
<div class="title">London</div>
<div class="subtitle">England, United Kingdom</div>
</div>
</div>
<div class="item">
<div class="icon building-icon">
<svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
<rect x="4" y="3" width="14" height="18" rx="2" fill="none" stroke="currentColor" stroke-width="1.6"/>
<rect x="6.5" y="6" width="3" height="3"/>
<rect x="11" y="6" width="3" height="3"/>
<rect x="6.5" y="10.5" width="3" height="3"/>
<rect x="11" y="10.5" width="3" height="3"/>
<rect x="6.5" y="15" width="3" height="3"/>
<rect x="11" y="15" width="3" height="3"/>
</svg>
</div>
<div>
<div class="title">Amsterdam</div>
<div class="subtitle">North Holland, Netherlands</div>
</div>
</div>
<div class="item">
<div class="icon building-icon">
<svg width="70" height="70" viewBox="0 0 24 24" aria-hidden="true">
<rect x="4" y="3" width="14" height="18" rx="2" fill="none" stroke="currentColor" stroke-width="1.6"/>
<rect x="6.5" y="6" width="3" height="3"/>
<rect x="11" y="6" width="3" height="3"/>
<rect x="6.5" y="10.5" width="3" height="3"/>
<rect x="11" y="10.5" width="3" height="3"/>
<rect x="6.5" y="15" width="3" height="3"/>
<rect x="11" y="15" width="3" height="3"/>
</svg>
</div>
<div>
<div class="title">Bruges</div>
<div class="subtitle">West-Vlaanderen, Belgium</div>
</div>
</div>
</div>
<!-- Recently searched -->
<div class="recent-header">
<div class="section-title" style="margin:0; color:#7f94a5;">Recently searched</div>
<div class="clear-link">Clear</div>
</div>
<div class="divider"></div>
<div class="list">
<div class="item">
<div class="icon pin-icon">
<svg width="66" height="66" viewBox="0 0 24 24" aria-hidden="true">
<path d="M12 2C8.1 2 5 5.1 5 9c0 5.4 7 11 7 11s7-5.6 7-11c0-3.9-3.1-7-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z"/>
</svg>
</div>
<div>
<div class="title">Gajnice Train Station</div>
<div class="subtitle">Zagreb</div |