| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Audio Player Screen</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #0E1316; |
| color: #E8EAED; |
| } |
| |
| |
| .status-bar { |
| height: 88px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| font-size: 42px; |
| color: #E8EAED; |
| opacity: 0.9; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .sb-dot { |
| width: 16px; height: 16px; background: #E8EAED; border-radius: 50%; |
| opacity: 0.9; |
| } |
| .sb-battery { |
| width: 38px; height: 20px; border: 2px solid #E8EAED; border-radius: 4px; position: relative; |
| } |
| .sb-battery::after { |
| content: ""; |
| position: absolute; right: -8px; top: 6px; width: 6px; height: 8px; background: #E8EAED; border-radius: 2px; |
| } |
| .sb-battery .fill { |
| position: absolute; left: 2px; top: 2px; height: 14px; width: 24px; background: #E8EAED; border-radius: 2px; |
| } |
| |
| |
| .app-bar { |
| height: 120px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| gap: 52px; |
| color: #E8EAED; |
| } |
| .icon-btn { |
| width: 64px; height: 64px; |
| display: inline-flex; align-items: center; justify-content: center; |
| color: #E8EAED; opacity: 0.95; |
| } |
| .icon-btn svg { width: 42px; height: 42px; stroke: #E8EAED; fill: none; stroke-width: 3.5; } |
| |
| |
| .card { |
| margin: 24px 28px 0 28px; |
| background: #23282C; |
| border-radius: 44px; |
| padding: 52px 52px 64px 52px; |
| min-height: 1060px; |
| box-shadow: 0 0 0 1px rgba(255,255,255,0.02) inset; |
| } |
| .title { |
| font-size: 58px; |
| font-weight: 500; |
| letter-spacing: 0.2px; |
| color: #F5F7FA; |
| } |
| .subtitle { |
| margin-top: 18px; |
| font-size: 40px; |
| color: #B6C0C8; |
| } |
| |
| |
| .wave-area { |
| position: relative; |
| margin-top: 140px; |
| height: 680px; |
| border-radius: 28px; |
| background: #23282C; |
| } |
| .playhead { |
| position: absolute; |
| left: 360px; |
| top: 140px; |
| width: 4px; |
| height: 400px; |
| background: #8D98A3; |
| border-radius: 3px; |
| } |
| .wave-dots { |
| position: absolute; |
| right: 60px; |
| bottom: 150px; |
| display: flex; |
| align-items: flex-end; |
| gap: 18px; |
| } |
| .bar { |
| width: 18px; |
| background: #8D98A3; |
| border-radius: 6px; |
| opacity: 0.9; |
| } |
| .dot { |
| width: 14px; height: 14px; background: #8D98A3; border-radius: 50%; opacity: 0.6; |
| } |
| |
| |
| .tabs { |
| margin: 40px 64px 0 64px; |
| display: flex; |
| gap: 22px; |
| } |
| .tab { |
| display: inline-flex; align-items: center; gap: 18px; |
| padding: 22px 34px; |
| background: #384046; |
| color: #D9E3EA; |
| border-radius: 999px; |
| font-size: 40px; |
| } |
| .tab.active { background: #464E54; } |
| .tab svg { width: 40px; height: 40px; stroke: #D9E3EA; fill: none; stroke-width: 3; } |
| |
| |
| .progress { |
| margin: 46px 48px 0 48px; |
| } |
| .track { |
| position: relative; |
| height: 8px; |
| background: #6F7A85; |
| border-radius: 8px; |
| } |
| .thumb { |
| position: absolute; left: 0; top: -18px; |
| width: 36px; height: 36px; background: #C9D6E4; border-radius: 50%; |
| box-shadow: 0 0 0 4px rgba(201,214,228,0.2); |
| } |
| .time-row { |
| margin-top: 20px; |
| display: flex; justify-content: space-between; align-items: center; |
| font-size: 38px; color: #D0D6DB; |
| } |
| |
| |
| .controls { |
| margin-top: 56px; |
| padding: 0 60px; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| .ctrl { |
| width: 240px; height: 240px; |
| background: #2B3136; |
| border-radius: 50%; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .ctrl.center { |
| background: #BFCDE0; |
| } |
| .ctrl svg { width: 96px; height: 96px; stroke: #E8EAED; fill: none; stroke-width: 4; } |
| .ctrl.center svg { stroke: #2B3136; fill: #2B3136; } |
| |
| .ctrl-label { |
| position: absolute; font-size: 34px; color: #E8EAED; |
| } |
| .label-left { transform: translate(28px, 80px); } |
| .label-right { transform: translate(28px, 80px); } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 44px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; height: 12px; |
| background: #E5E5E5; |
| border-radius: 12px; |
| opacity: 0.7; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:52</div> |
| <div class="status-icons"> |
| <div class="sb-dot"></div> |
| <div class="sb-dot" style="width:22px;height:22px;border-radius:4px;"></div> |
| <div class="sb-battery"><div class="fill"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"><path d="M30 10 L16 24 L30 38"/></svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"><path d="M24 6 L28 18 L42 18 L30 26 L34 40 L24 30 L14 40 L18 26 L6 18 L20 18 Z"/></svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"> |
| <circle cx="12" cy="30" r="6" /> |
| <circle cx="36" cy="18" r="6" /> |
| <circle cx="36" cy="36" r="6" /> |
| <path d="M16 28 L30 20" /> |
| <path d="M16 32 L30 34" /> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"><path d="M14 34 L34 14 M14 14 L34 34"/></svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"><circle cx="20" cy="20" r="12"/><path d="M30 30 L42 42"/></svg> |
| </div> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 48 48"><circle cx="24" cy="12" r="3"/><circle cx="24" cy="24" r="3"/><circle cx="24" cy="36" r="3"/></svg> |
| </div> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="title">Birthday Song</div> |
| <div class="subtitle">Thu, Dec 14 • 7:56 AM</div> |
|
|
| <div class="wave-area"> |
| <div class="playhead"></div> |
| <div class="wave-dots"> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="bar" style="height:56px;"></div> |
| <div class="bar" style="height:80px;"></div> |
| <div class="bar" style="height:120px;"></div> |
| <div class="bar" style="height:84px;"></div> |
| <div class="bar" style="height:68px;"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| <div class="bar" style="height:68px;"></div> |
| <div class="bar" style="height:92px;"></div> |
| <div class="bar" style="height:132px;"></div> |
| <div class="bar" style="height:156px;"></div> |
| <div class="bar" style="height:164px;"></div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="tabs"> |
| <div class="tab active"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M12 8 V40 M24 14 V40 M36 20 V40"/> |
| </svg> |
| <span>Audio</span> |
| </div> |
| <div class="tab"> |
| <svg viewBox="0 0 48 48"> |
| <path d="M10 14 H38 M10 24 H38 M10 34 H28"/> |
| </svg> |
| <span>Transcript</span> |
| </div> |
| </div> |
|
|
| |
| <div class="progress"> |
| <div class="track"></div> |
| <div class="thumb"></div> |
| <div class="time-row"> |
| <div>00:00</div> |
| <div>-00:54</div> |
| </div> |
| </div> |
|
|
| |
| <div class="controls"> |
| <div class="ctrl"> |
| <svg viewBox="0 0 96 96"> |
| <path d="M42 20 L26 20 A26 26 0 1 0 70 48" /> |
| </svg> |
| <div class="ctrl-label label-left">5</div> |
| </div> |
| <div class="ctrl center"> |
| <svg viewBox="0 0 96 96"> |
| <polygon points="36,28 72,48 36,68" /> |
| </svg> |
| </div> |
| <div class="ctrl"> |
| <svg viewBox="0 0 96 96"> |
| <path d="M54 20 L70 20 A26 26 0 1 1 26 48" /> |
| </svg> |
| <div class="ctrl-label label-right">10</div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |