| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Post to Picsart - Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #FAFAFA; |
| color: #333; |
| } |
| |
| |
| .status-bar { |
| height: 100px; |
| background: #000; |
| color: #fff; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| font-weight: 600; |
| font-size: 38px; |
| box-sizing: border-box; |
| justify-content: space-between; |
| } |
| .sb-left, .sb-right { display: flex; align-items: center; gap: 24px; } |
| .dot-icon { |
| width: 28px; height: 28px; border-radius: 50%; background: #BDBDBD; |
| } |
| .wifi-icon, .battery-icon { display: inline-flex; align-items: center; } |
| .wifi-icon svg, .battery-icon svg { width: 44px; height: 44px; fill: #fff; } |
| |
| |
| .app-bar { |
| height: 140px; |
| background: #FFFFFF; |
| display: flex; |
| align-items: center; |
| box-sizing: border-box; |
| padding: 0 32px; |
| border-bottom: 1px solid #eee; |
| } |
| .back-btn { |
| width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; margin-right: 12px; |
| } |
| .title { |
| font-size: 50px; font-weight: 700; color: #4A4A4A; |
| } |
| .skip { |
| margin-left: auto; |
| font-size: 44px; |
| font-weight: 700; |
| color: #7C4DFF; |
| } |
| |
| |
| .content { |
| padding: 32px; |
| } |
| |
| .preview-card { |
| width: 1016px; |
| height: 1016px; |
| background: #fff; |
| border-radius: 24px; |
| margin: 24px auto 32px auto; |
| position: relative; |
| box-shadow: 0 2px 8px rgba(0,0,0,0.06); |
| display: flex; align-items: center; justify-content: center; |
| } |
| .img-placeholder { |
| width: 90%; |
| height: 90%; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| color: #757575; |
| display: flex; align-items: center; justify-content: center; |
| text-align: center; |
| border-radius: 24px; |
| font-size: 40px; |
| padding: 24px; |
| box-sizing: border-box; |
| } |
| .gif-chip { |
| position: absolute; |
| right: 28px; |
| bottom: 28px; |
| width: 140px; height: 140px; |
| border-radius: 50%; |
| background: rgba(0,0,0,0.12); |
| display: flex; align-items: center; justify-content: center; |
| color: #fff; |
| font-weight: 800; |
| letter-spacing: 1px; |
| } |
| .gif-chip .play { |
| position: absolute; |
| left: 30px; |
| } |
| .gif-chip svg { fill: #fff; width: 42px; height: 42px; } |
| |
| .input-prompt { |
| font-size: 44px; color: #7A7A7A; margin: 24px 8px; |
| } |
| .divider { |
| height: 1px; background: #E0E0E0; margin: 16px 0 24px 0; |
| } |
| |
| .subhead { font-size: 42px; color: #777; margin: 12px 8px; } |
| |
| .chips { display: flex; gap: 20px; flex-wrap: wrap; padding: 8px 0 24px 0; } |
| .chip { |
| background: #EEEEEE; |
| color: #444; |
| border-radius: 40px; |
| padding: 18px 28px; |
| font-size: 40px; |
| } |
| |
| .row { |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 24px 8px; |
| } |
| .row .label { font-size: 48px; color: #333; display: flex; align-items: center; gap: 16px; } |
| .info-icon { |
| width: 48px; height: 48px; border-radius: 50%; |
| border: 3px solid #111; color: #111; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; |
| font-size: 34px; |
| } |
| |
| |
| .toggle.on { |
| width: 140px; height: 72px; border-radius: 40px; background: #6F2BFF; position: relative; |
| box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08); |
| } |
| .toggle .knob { |
| position: absolute; top: 8px; right: 8px; |
| width: 56px; height: 56px; border-radius: 50%; |
| background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.25); |
| } |
| |
| |
| .actions { |
| position: absolute; left: 0; right: 0; bottom: 300px; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 56px; |
| } |
| .save-link { |
| color: #7C4DFF; font-size: 50px; font-weight: 800; letter-spacing: 1px; |
| } |
| .post-btn { |
| background: #C400FF; |
| color: #fff; font-weight: 800; font-size: 48px; letter-spacing: 1px; |
| border: none; border-radius: 60px; padding: 32px 120px; |
| box-shadow: 0 6px 14px rgba(196,0,255,0.25); |
| } |
| |
| |
| .ad-banner { |
| position: absolute; left: 0; right: 0; bottom: 100px; |
| height: 160px; background: #F1F1F1; border-top: 1px solid #E0E0E0; |
| display: flex; align-items: center; justify-content: space-between; |
| padding: 0 24px; box-sizing: border-box; |
| } |
| .ad-left { display: flex; align-items: center; gap: 20px; } |
| .ad-thumb { |
| width: 120px; height: 120px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 16px; |
| display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; |
| } |
| .ad-text { display: flex; flex-direction: column; } |
| .ad-text .title { font-size: 40px; color: #333; font-weight: 800; } |
| .ad-text .subtitle { font-size: 30px; color: #888; } |
| .ad-get { |
| background: #1F7A4A; color: #fff; border: none; border-radius: 16px; |
| padding: 22px 46px; font-size: 44px; font-weight: 800; |
| } |
| |
| |
| .gesture { |
| position: absolute; left: 0; right: 0; bottom: 0; height: 100px; background: #000; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .gesture .pill { |
| width: 220px; height: 10px; background: #fff; border-radius: 10px; opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="sb-left"> |
| <div>4:17</div> |
| <div class="dot-icon"></div> |
| <div class="dot-icon"></div> |
| <div class="dot-icon"></div> |
| </div> |
| <div class="sb-right"> |
| <span class="wifi-icon" aria-hidden="true"> |
| <svg viewBox="0 0 24 24"><path d="M12 18a2 2 0 1 0 0.001 3.999A2 2 0 0 0 12 18zm-7-6l1.5 1.5A9 9 0 0 1 17.5 13L19 11a11 11 0 0 0-14 0zM3 8l1.6 1.6a13 13 0 0 1 14.8 0L21 8a15 15 0 0 0-18 0z"/></svg> |
| </span> |
| <span class="battery-icon" aria-hidden="true"> |
| <svg viewBox="0 0 24 24"><path d="M16 6h2a2 2 0 0 1 2 2v1h1v6h-1v1a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h10zm-9 3v6h10V9H7z"/></svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="back-btn" aria-label="Back"> |
| <svg viewBox="0 0 24 24" width="48" height="48"><path d="M15 19L8 12l7-7" stroke="#333" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg> |
| </div> |
| <div class="title">Post to Picsart</div> |
| <div class="skip">SKIP</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="preview-card"> |
| <div class="img-placeholder">[IMG: Artwork preview with glitter ring]</div> |
| <div class="gif-chip"> |
| <div class="play"><svg viewBox="0 0 24 24"><path d="M8 5v14l11-7z"/></svg></div> |
| GIF |
| </div> |
| </div> |
|
|
| <div class="input-prompt">Add #hashtag, description, @friends</div> |
| <div class="divider"></div> |
|
|
| <div class="subhead">Suggested Tags</div> |
| <div class="chips"> |
| <div class="chip">#nature</div> |
| <div class="chip">#animal</div> |
| <div class="chip">#beauty</div> |
| <div class="chip">#food</div> |
| </div> |
|
|
| <div class="row"> |
| <div class="label">Free-to-Edit <span class="info-icon">i</span></div> |
| <div class="toggle on"> |
| <div class="knob"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="actions"> |
| <div class="save-link">SAVE</div> |
| <button class="post-btn">POST</button> |
| </div> |
|
|
| |
| <div class="ad-banner"> |
| <div class="ad-left"> |
| <div class="ad-thumb">Ad</div> |
| <div class="ad-text"> |
| <div class="subtitle">Play Store</div> |
| <div class="title">MONOPOLY GO!</div> |
| </div> |
| </div> |
| <button class="ad-get">GET</button> |
| </div> |
|
|
| |
| <div class="gesture"><div class="pill"></div></div> |
| </div> |
| </body> |
| </html> |