| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>All recordings UI</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; } |
| #render-target { |
| position: relative; |
| width: 1080px; |
| height: 2400px; |
| overflow: hidden; |
| background: #0d0a0a; |
| } |
| |
| |
| .appbar { |
| position: absolute; |
| top: 80px; |
| left: 48px; |
| right: 48px; |
| height: 120px; |
| display: flex; |
| align-items: center; |
| color: #d8d3d3; |
| } |
| .appbar .title { |
| font-size: 64px; |
| font-weight: 700; |
| color: #cfc9c9; |
| margin-left: 24px; |
| } |
| .appbar .actions { |
| margin-left: auto; |
| display: flex; |
| gap: 36px; |
| } |
| .icon-btn { |
| width: 64px; height: 64px; |
| display: flex; justify-content: center; align-items: center; |
| border-radius: 16px; |
| } |
| .icon-btn svg { fill: none; stroke: #cfc9c9; stroke-width: 4; } |
| |
| |
| .tag-row { |
| position: absolute; |
| top: 220px; |
| left: 48px; |
| right: 48px; |
| display: flex; |
| align-items: center; |
| gap: 20px; |
| } |
| .tag { |
| display: inline-flex; align-items: center; gap: 16px; |
| background: #6b2424; |
| color: #f4d9d9; |
| padding: 18px 28px; |
| border-radius: 16px; |
| font-weight: 700; |
| letter-spacing: 1px; |
| } |
| .tag svg { stroke: #f4d9d9; } |
| |
| |
| .list { |
| position: absolute; |
| top: 310px; |
| left: 48px; |
| right: 48px; |
| } |
| .card { |
| background: #161212; |
| color: #d9d5d5; |
| border-radius: 36px; |
| padding: 40px 44px; |
| margin-bottom: 42px; |
| box-shadow: 0 10px 30px rgba(0,0,0,0.35); |
| position: relative; |
| } |
| .card .title { |
| font-size: 44px; |
| font-weight: 700; |
| color: #cfc9c9; |
| margin-bottom: 24px; |
| opacity: 0.85; |
| } |
| .meta { |
| display: flex; align-items: center; gap: 16px; |
| color: #b0a1a1; |
| font-size: 32px; |
| } |
| .red-dot { |
| width: 14px; height: 14px; background: #c2352d; border-radius: 50%; |
| display: inline-block; |
| } |
| .card .right { |
| position: absolute; right: 30px; top: 30px; display: flex; align-items: center; gap: 24px; |
| } |
| .duration { |
| font-size: 32px; color: #bfb6b6; |
| } |
| .menu-icon svg { stroke: #bfb6b6; } |
| .heart { |
| position: absolute; right: 34px; bottom: 36px; |
| } |
| .heart svg { stroke: #c54b4b; fill: none; stroke-width: 5; } |
| |
| |
| .sheet { |
| position: absolute; |
| left: 0; right: 0; bottom: 0; |
| height: 980px; |
| background: #472726; |
| border-top-left-radius: 48px; |
| border-top-right-radius: 48px; |
| color: #f2e9e9; |
| box-shadow: 0 -20px 40px rgba(0,0,0,0.6); |
| padding: 36px 48px 120px 48px; |
| } |
| .sheet .handle { |
| width: 180px; height: 18px; background: #6a4544; border-radius: 9px; margin: 10px auto 38px; |
| } |
| .sheet .header { |
| display: flex; align-items: flex-start; |
| } |
| .sheet .header .title { |
| font-size: 52px; font-weight: 800; color: #ffffff; flex: 1; |
| } |
| .sheet .header .right { |
| display: flex; flex-direction: column; align-items: flex-end; gap: 16px; |
| } |
| .sheet .right .duration { font-size: 36px; color: #e7dbdb; } |
| .sheet .submeta { |
| margin-top: 10px; color: #e0d2d2; opacity: 0.9; font-size: 32px; |
| } |
| .divider { |
| height: 2px; background: #63403f; margin: 40px 0 16px 0; |
| } |
| .actions { |
| display: grid; |
| grid-template-columns: 1fr 1fr; |
| column-gap: 80px; |
| row-gap: 42px; |
| margin-top: 10px; |
| } |
| .action { |
| display: flex; align-items: center; gap: 28px; |
| color: #f1e6e6; font-size: 38px; font-weight: 600; |
| } |
| .action .aicon { |
| width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; |
| } |
| .action .aicon svg { stroke: #e4d0cf; fill: none; stroke-width: 4; } |
| .home-indicator { |
| position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); |
| width: 300px; height: 16px; background: #e9e9e9; border-radius: 12px; opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="appbar"> |
| <div class="icon-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M3 6h18M3 12h18M3 18h18"/> |
| </svg> |
| </div> |
| <div class="title">All recordings</div> |
| <div class="actions"> |
| <div class="icon-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7"></circle> |
| <path d="M21 21l-4.5-4.5"></path> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M4 6h16M7 12h10M10 18h7"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="tag-row"> |
| <div class="tag"> |
| <svg width="32" height="32" viewBox="0 0 24 24"> |
| <path d="M3 6h7l2 3h9v9H3z"/> |
| </svg> |
| <span>ALL RECORDINGS</span> |
| </div> |
| </div> |
|
|
| |
| <div class="list"> |
|
|
| <div class="card"> |
| <div class="title">recording2023-11-17 12-16-50</div> |
| <div class="meta"> |
| <span class="red-dot"></span> |
| <span>Nov 17, 2023 12:16 PM</span> |
| </div> |
| <div class="right"> |
| <div class="menu-icon"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2"></circle> |
| <circle cx="12" cy="12" r="2"></circle> |
| <circle cx="12" cy="19" r="2"></circle> |
| </svg> |
| </div> |
| <div class="duration">00:07</div> |
| </div> |
| <div class="heart"> |
| <svg width="54" height="54" viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="card" style="opacity:0.85;"> |
| <div class="title">recording2023-11-17 14-10-57</div> |
| <div class="meta"> |
| <span class="red-dot"></span> |
| <span>Nov 17, 2023 2:11 PM</span> |
| </div> |
| <div class="right"> |
| <div class="menu-icon"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2"></circle> |
| <circle cx="12" cy="12" r="2"></circle> |
| <circle cx="12" cy="19" r="2"></circle> |
| </svg> |
| </div> |
| <div class="duration">00:03</div> |
| </div> |
| <div class="heart"> |
| <svg width="54" height="54" viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="card" style="opacity:0.8;"> |
| <div class="title">recording2023-11-20 10-43-12</div> |
| <div class="meta"> |
| <span class="red-dot"></span> |
| <span>Nov 20, 2023 10:44 AM</span> |
| </div> |
| <div class="right"> |
| <div class="menu-icon"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2"></circle> |
| <circle cx="12" cy="12" r="2"></circle> |
| <circle cx="12" cy="19" r="2"></circle> |
| </svg> |
| </div> |
| <div class="duration">00:44</div> |
| </div> |
| <div class="heart"> |
| <svg width="54" height="54" viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="sheet"> |
| <div class="handle"></div> |
| <div class="header"> |
| <div class="title">recording2023-11-17 12-16-50</div> |
| <div class="right"> |
| <div class="duration">00:07</div> |
| <div class="heart"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.8-7-10.2C5 8 6.8 6.2 9 6.2c1.5 0 2.7.8 3 1.9.3-1.1 1.5-1.9 3-1.9 2.2 0 4 1.8 4 4.6C19 16.2 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="submeta">Nov 17, 2023 12:16 PM | 0.13 MB</div> |
| <div class="divider"></div> |
|
|
| <div class="actions"> |
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 12l4 4 10-10"/> |
| </svg> |
| </div> |
| <div>Select</div> |
| </div> |
|
|
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="6" cy="12" r="2"/><circle cx="12" cy="8" r="2"/><circle cx="18" cy="12" r="2"/> |
| <path d="M8 12l4-4 4 4"/> |
| </svg> |
| </div> |
| <div>Share</div> |
| </div> |
|
|
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 19v-8M10 19v-12M15 19v-6M20 19v-10"/> |
| </svg> |
| </div> |
| <div>Edit</div> |
| </div> |
|
|
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="6"/> |
| </svg> |
| </div> |
| <div>Resume</div> |
| </div> |
|
|
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 6h8M5 12h8M5 18h8"/> |
| <path d="M17 9l3 3-3 3"/> |
| </svg> |
| </div> |
| <div>Rename</div> |
| </div> |
|
|
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 14l10-10 4 4-10 10H5z"/> |
| <path d="M3 21h6"/> |
| </svg> |
| </div> |
| <div>Notes</div> |
| </div> |
|
|
| <div class="action"> |
| <div class="aicon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 7h12l-1 13H7L6 7z"/> |
| <path d="M10 11v6M14 11v6"/> |
| <path d="M9 7l1-3h4l1 3"/> |
| </svg> |
| </div> |
| <div>Delete</div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |