File size: 8,323 Bytes
fa881a6 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #0E2F2F; /* deep teal/dark green */
border-radius: 0;
box-shadow: none;
color: #E9F3F1;
}
.status-bar {
position: absolute;
top: 0;
left: 0;
height: 110px;
width: 100%;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 34px;
color: #E9F3F1;
}
.status-right {
display: flex;
align-items: center;
gap: 24px;
}
.search-header {
position: absolute;
top: 110px;
left: 0;
width: 100%;
height: 140px;
display: flex;
align-items: center;
padding: 0 36px;
border-bottom: 1px solid rgba(255,255,255,0.08);
color: #D7ECE5;
}
.search-title {
font-size: 48px;
font-weight: 500;
margin-left: 24px;
}
.search-actions {
margin-left: auto;
display: flex;
align-items: center;
gap: 28px;
}
.list-container {
position: absolute;
top: 280px;
left: 0;
width: 100%;
padding: 0 36px;
}
.contact-item {
display: flex;
align-items: center;
gap: 28px;
padding: 28px 0;
}
.avatar {
width: 96px;
height: 96px;
border-radius: 48px;
background: #8E63DA;
display: flex;
align-items: center;
justify-content: center;
color: #0E2F2F;
font-weight: 700;
font-size: 44px;
}
.contact-texts {
display: flex;
flex-direction: column;
}
.contact-name {
font-size: 44px;
font-weight: 700;
color: #79E0B9; /* mint green */
line-height: 1.2;
}
.contact-sub {
font-size: 32px;
color: #9CCBC1;
margin-top: 6px;
}
/* Keyboard mock */
.keyboard {
position: absolute;
bottom: 60px;
left: 0;
width: 100%;
height: 900px;
background: #1C2324;
border-top: 1px solid rgba(255,255,255,0.06);
display: flex;
flex-direction: column;
}
.suggestions {
height: 90px;
display: flex;
align-items: center;
padding: 0 28px;
color: #CFE6E0;
font-size: 34px;
gap: 24px;
}
.suggestions .chip-sep { opacity: 0.6; }
.keys {
flex: 1;
padding: 18px 22px;
display: flex;
flex-direction: column;
gap: 22px;
}
.row {
display: flex;
justify-content: space-between;
gap: 14px;
}
.key {
height: 120px;
min-width: 92px;
background: #2A3234;
border-radius: 16px;
color: #E6ECEA;
font-size: 42px;
display: flex;
align-items: center;
justify-content: center;
}
.key.small { min-width: 120px; }
.key.wide { flex: 1; }
.key.circle {
height: 120px;
width: 120px;
border-radius: 60px;
background: #A6EBCF;
color: #0E2F2F;
font-weight: 700;
}
.bottom-bar {
position: absolute;
bottom: 16px;
left: 50%;
transform: translateX(-50%);
width: 400px;
height: 8px;
border-radius: 4px;
background: rgba(255,255,255,0.85);
}
svg { display: block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">9:56</div>
<div class="status-right">
<!-- simple icons -->
<svg width="40" height="40" viewBox="0 0 24 24">
<!-- location/services glyphs (four dots) -->
<circle cx="4" cy="12" r="2" fill="#E9F3F1"></circle>
<circle cx="10" cy="12" r="2" fill="#E9F3F1"></circle>
<circle cx="16" cy="12" r="2" fill="#E9F3F1"></circle>
<circle cx="22" cy="12" r="2" fill="#E9F3F1"></circle>
</svg>
<!-- WiFi -->
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M2 9c5-4 15-4 20 0" stroke="#E9F3F1" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M5 12c4-3 10-3 14 0" stroke="#E9F3F1" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M9 16c3-2 5-2 8 0" stroke="#E9F3F1" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="19" r="2" fill="#E9F3F1"/>
</svg>
<!-- Battery with percentage -->
<svg width="50" height="40" viewBox="0 0 28 16">
<rect x="1" y="3" width="22" height="10" rx="2" ry="2" stroke="#E9F3F1" stroke-width="2" fill="none"/>
<rect x="3" y="5" width="18" height="6" fill="#E9F3F1"/>
<rect x="24" y="6" width="3" height="4" fill="#E9F3F1"/>
</svg>
<div style="font-size:32px;">100%</div>
</div>
</div>
<!-- Search header -->
<div class="search-header">
<!-- back arrow -->
<svg width="56" height="56" viewBox="0 0 24 24">
<path d="M15 6L9 12l6 6" stroke="#E9F3F1" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="search-title">Clara Wagner</div>
<div class="search-actions">
<!-- clear X -->
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M6 6L18 18M18 6L6 18" stroke="#E9F3F1" stroke-width="2.5" stroke-linecap="round"/>
</svg>
<!-- mic -->
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M12 5a4 4 0 0 1 4 4v5a4 4 0 0 1-8 0V9a4 4 0 0 1 4-4z" fill="none" stroke="#E9F3F1" stroke-width="2"/>
<path d="M5 12a7 7 0 0 0 14 0" fill="none" stroke="#E9F3F1" stroke-width="2" stroke-linecap="round"/>
<path d="M12 19v4" stroke="#E9F3F1" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<!-- Result list -->
<div class="list-container">
<div class="contact-item">
<div class="avatar">C</div>
<div class="contact-texts">
<div class="contact-name">Clara Wagner</div>
<div class="contact-sub">Clara Wagner</div>
</div>
</div>
</div>
<!-- Keyboard mock -->
<div class="keyboard">
<div class="suggestions">
<!-- small grid icon -->
<svg width="44" height="44" viewBox="0 0 24 24">
<rect x="3" y="3" width="6" height="6" fill="#CFE6E0"/>
<rect x="13" y="3" width="8" height="6" fill="#CFE6E0"/>
<rect x="3" y="13" width="8" height="8" fill="#CFE6E0"/>
<rect x="13" y="13" width="8" height="8" fill="#CFE6E0"/>
</svg>
<div>Wagner</div>
<div class="chip-sep">|</div>
<div>Wagner's</div>
</div>
<div class="keys">
<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>
<div class="row">
<div class="key small">shift</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 small">
<!-- backspace -->
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M4 12l5-5h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H9l-5-5z" fill="none" stroke="#E6ECEA" stroke-width="2"/>
<path d="M12 9l4 4M16 9l-4 4" stroke="#E6ECEA" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
<div class="row">
<div class="key circle">?123</div>
<div class="key small">,</div>
<div class="key wide"></div>
<div class="key small">.</div>
<div class="key circle">
<!-- search icon -->
<svg width="40" height="40" viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" stroke="#0E2F2F" stroke-width="2" fill="none"/>
<path d="M15 15l5 5" stroke="#0E2F2F" stroke-width="2" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
</div>
<div class="bottom-bar"></div>
</div>
</body>
</html> |