| <!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: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#ffffff; |
| } |
| |
| |
| .status-bar { |
| position:absolute; top:0; left:0; width:100%; height:100px; |
| background:#0a6a39; color:#fff; |
| display:flex; align-items:center; justify-content:space-between; |
| padding:0 32px; box-sizing:border-box; |
| font-size:40px; letter-spacing:0.5px; |
| } |
| .status-icons { display:flex; align-items:center; gap:28px; } |
| .status-dot { width:12px; height:12px; background:#cfe6cf; border-radius:50%; opacity:0.8; } |
| .status-icon { |
| width:44px; height:44px; border:2px solid rgba(255,255,255,0.8); border-radius:8px; |
| } |
| |
| |
| .app-bar { |
| position:absolute; top:100px; left:0; width:100%; height:150px; |
| background:#ffffff; display:flex; align-items:center; padding:0 24px; box-sizing:border-box; |
| } |
| .back-btn { |
| width:80px; height:80px; display:flex; align-items:center; justify-content:center; |
| margin-right:12px; |
| } |
| .search-pill { |
| flex:1; height:96px; background:#f1f1f1; border-radius:48px; |
| display:flex; align-items:center; padding:0 28px; box-sizing:border-box; |
| color:#8a8a8a; font-size:38px; |
| } |
| .search-pill .text { flex:1; padding:0 18px; } |
| .mic-btn { |
| width:72px; height:72px; background:#2e7d32; border-radius:36px; |
| display:flex; align-items:center; justify-content:center; |
| } |
| |
| |
| .chip-row { |
| position:absolute; top:270px; left:0; width:100%; |
| padding:0 28px; box-sizing:border-box; display:flex; align-items:center; gap:18px; |
| } |
| .chip-icon { |
| width:64px; height:64px; border-radius:32px; border:2px solid #d9d9d9; display:flex; align-items:center; justify-content:center; |
| } |
| .chip { |
| height:76px; display:inline-flex; align-items:center; padding:0 28px; |
| border:2px solid #d9d9d9; border-radius:38px; font-size:36px; color:#5e5e5e; background:#ffffff; |
| } |
| .divider { |
| position:absolute; top:352px; left:0; width:100%; height:4px; background:#e5e5e5; |
| } |
| |
| |
| .section-header { |
| position:absolute; top:394px; left:0; width:100%; |
| padding:0 32px; box-sizing:border-box; display:flex; align-items:center; gap:16px; |
| color:#7a7a7a; font-size:42px; font-weight:600; |
| } |
| |
| |
| .cards { |
| position:absolute; top:480px; left:0; width:100%; |
| padding:0 28px; box-sizing:border-box; display:flex; gap:28px; |
| } |
| .card { |
| width:180px; background:#f5f5f5; border-radius:28px; padding:24px 18px; box-sizing:border-box; |
| display:flex; flex-direction:column; align-items:center; gap:16px; |
| box-shadow: 0 0 0 1px #eeeeee inset; |
| } |
| .img-ph { |
| width:140px; height:120px; background:#E0E0E0; border:1px solid #BDBDBD; |
| display:flex; align-items:center; justify-content:center; color:#757575; font-size:24px; text-align:center; |
| border-radius:12px; |
| } |
| .card label { |
| font-size:36px; color:#3e3e3e; |
| } |
| |
| |
| .content-space { position:absolute; top:780px; left:0; width:100%; height:760px; } |
| |
| |
| .keyboard { |
| position:absolute; left:0; bottom:60px; width:100%; height:820px; |
| background:#111; border-top-left-radius:40px; border-top-right-radius:40px; |
| color:#e7e7e7; |
| } |
| .kb-top { |
| height:120px; display:flex; align-items:center; gap:60px; |
| padding:0 40px; box-sizing:border-box; |
| } |
| .kb-top .top-icon { |
| width:78px; height:78px; border-radius:18px; border:2px solid #2a2a2a; display:flex; align-items:center; justify-content:center; |
| } |
| |
| .keys { padding:0 32px; box-sizing:border-box; display:flex; flex-direction:column; gap:26px; } |
| .row { display:flex; gap:16px; justify-content:center; } |
| .key { |
| width:90px; height:110px; background:#1f1f1f; border-radius:22px; display:flex; align-items:center; justify-content:center; |
| font-size:42px; color:#e7e7e7; |
| } |
| .key.wide { width:140px; } |
| .key.extra-wide { width:460px; } |
| .key.green { |
| background:#c8e6c9; color:#1b5e20; font-weight:bold; |
| } |
| .key.action { |
| background:#2b2b2b; |
| } |
| |
| |
| .gesture { |
| position:absolute; bottom:18px; left:50%; transform:translateX(-50%); |
| width:320px; height:14px; background:#ffffff; border-radius:10px; opacity:0.8; |
| } |
| |
| |
| .svg { display:inline-block; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>10:09</div> |
| <div class="status-icons"> |
| <div class="status-icon"></div> |
| <div class="status-icon"></div> |
| <div class="status-dot"></div> |
| <div class="status-icon"></div> |
| <div class="status-icon"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="back-btn"> |
| <svg class="svg" width="48" height="48" viewBox="0 0 24 24"> |
| <path d="M15 18l-6-6 6-6" stroke="#2e2e2e" stroke-width="2.4" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="search-pill"> |
| <svg class="svg" width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7" stroke="#9e9e9e" stroke-width="2" fill="none"/> |
| <path d="M20 20l-4-4" stroke="#9e9e9e" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| <div class="text">Aapko Kya Chahiye?</div> |
| <div class="mic-btn"> |
| <svg class="svg" width="36" height="36" viewBox="0 0 24 24"> |
| <rect x="9" y="4" width="6" height="10" rx="3" fill="#fff"/> |
| <path d="M6 11a6 6 0 0012 0M12 17v3" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="chip-row"> |
| <div class="chip-icon"> |
| <svg class="svg" width="36" height="36" viewBox="0 0 24 24"> |
| <path d="M12 5v6l4 2" stroke="#7a7a7a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| <path d="M21 12a9 9 0 11-9-9" stroke="#7a7a7a" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="chip">almond chocolate</div> |
| </div> |
| <div class="divider"></div> |
|
|
| |
| <div class="section-header"> |
| <svg class="svg" width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M4 16l6-6 4 4 6-6" stroke="#7a7a7a" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| <div>Trending in your area</div> |
| </div> |
|
|
| |
| <div class="cards"> |
| <div class="card"> |
| <div class="img-ph">[IMG: Oil]</div> |
| <label>Oil</label> |
| </div> |
| <div class="card"> |
| <div class="img-ph">[IMG: Ghee]</div> |
| <label>Ghee</label> |
| </div> |
| <div class="card"> |
| <div class="img-ph">[IMG: Sugar]</div> |
| <label>Sugar</label> |
| </div> |
| <div class="card"> |
| <div class="img-ph">[IMG: Rice]</div> |
| <label>Rice</label> |
| </div> |
| <div class="card"> |
| <div class="img-ph">[IMG: Biscuits]</div> |
| <label>Biscuits</label> |
| </div> |
| </div> |
|
|
| <div class="content-space"></div> |
|
|
| |
| <div class="keyboard"> |
| <div class="kb-top"> |
| <div class="top-icon"></div> |
| <div class="top-icon"></div> |
| <div class="top-icon">GIF</div> |
| <div class="top-icon"></div> |
| <div class="top-icon"></div> |
| <div class="top-icon"></div> |
| <div class="top-icon"> |
| <svg class="svg" width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9" stroke="#e7e7e7" stroke-width="2" fill="none"/> |
| <path d="M12 6v6l4 2" stroke="#e7e7e7" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </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 action">⇧</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 action"> |
| <svg class="svg" width="36" height="36" viewBox="0 0 24 24"> |
| <path d="M6 6l12 12M6 18L18 6" stroke="#e7e7e7" stroke-width="2" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| <div class="row"> |
| <div class="key green wide">?123</div> |
| <div class="key action">,</div> |
| <div class="key action">😊</div> |
| <div class="key extra-wide action"></div> |
| <div class="key action">.</div> |
| <div class="key green wide"> |
| <svg class="svg" width="36" height="36" viewBox="0 0 24 24"> |
| <rect x="9" y="4" width="6" height="10" rx="3" fill="#1b5e20"/> |
| <path d="M6 11a6 6 0 0012 0M12 17v3" stroke="#1b5e20" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="gesture"></div> |
| </div> |
| </body> |
| </html> |