| <!DOCTYPE html> |
| <html lang="en"> |
| <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, Oxygen, Ubuntu, "Helvetica Neue", Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #1E1614; |
| color: #E7D1CB; |
| } |
| |
| |
| .status-bar { |
| height: 90px; |
| padding: 0 40px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #EFE4E0; |
| font-weight: 600; |
| font-size: 34px; |
| opacity: 0.95; |
| } |
| .status-icons { display: flex; gap: 24px; align-items: center; } |
| .status-dot { width: 10px; height: 10px; background: #BFA7A1; border-radius: 50%; display: inline-block; } |
| .battery { |
| width: 40px; height: 20px; border: 2px solid #E7D1CB; border-radius: 4px; position: relative; |
| } |
| .battery::after { content: ""; width: 5px; height: 10px; background: #E7D1CB; position: absolute; right: -7px; top: 4px; border-radius: 2px; } |
| .battery .level { width: 24px; height: 14px; background: #E7D1CB; position: absolute; left: 3px; top: 3px; border-radius: 2px; } |
| |
| |
| .app-bar { |
| height: 150px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .app-left { display: flex; align-items: center; gap: 30px; } |
| .app-title { font-size: 60px; font-weight: 700; letter-spacing: 0.5px; } |
| .app-actions { display: flex; align-items: center; gap: 36px; } |
| .icon-btn { background: transparent; border: none; padding: 0; cursor: default; } |
| .icon { width: 64px; height: 64px; } |
| .icon-small { width: 52px; height: 52px; } |
| |
| |
| .chip { |
| margin: 12px 40px 20px 40px; |
| display: inline-flex; |
| align-items: center; |
| gap: 18px; |
| background: #6F2B29; |
| color: #FFD9D5; |
| padding: 20px 30px; |
| border-radius: 20px; |
| font-size: 32px; |
| font-weight: 700; |
| box-shadow: 0 2px 0 rgba(0,0,0,0.25); |
| } |
| .chip .folder-icon { width: 50px; height: 36px; } |
| |
| |
| .content { |
| height: calc(100% - 90px - 150px); |
| overflow-y: auto; |
| padding-bottom: 220px; |
| } |
| |
| .card { |
| margin: 28px 36px; |
| background: #2A1F1D; |
| border-radius: 40px; |
| padding: 38px 40px 60px 40px; |
| box-shadow: 0 18px 30px rgba(0,0,0,0.35); |
| position: relative; |
| } |
| .card-header { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .card-title { |
| font-size: 44px; |
| font-weight: 700; |
| color: #F0E1DC; |
| } |
| .card-right { |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .duration { |
| font-size: 30px; |
| color: #C8B2AC; |
| letter-spacing: 0.5px; |
| } |
| .more-vert { width: 14px; height: 52px; display: inline-flex; align-items: center; } |
| .card-sub { |
| margin-top: 16px; |
| display: flex; |
| align-items: center; |
| gap: 14px; |
| color: #D9C6C0; |
| font-size: 32px; |
| } |
| .live-dot { |
| width: 16px; height: 16px; background: #E64A3B; border-radius: 50%; |
| } |
| .heart { |
| position: absolute; |
| right: 32px; |
| bottom: 20px; |
| width: 56px; height: 56px; |
| } |
| |
| |
| .fab { |
| position: absolute; |
| right: 70px; |
| bottom: 210px; |
| width: 170px; height: 170px; |
| border-radius: 36px; |
| background: #E64A3B; |
| box-shadow: 0 16px 32px rgba(0,0,0,0.45); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .fab .inner-dot { |
| width: 54px; height: 54px; background: #FFFFFF; border-radius: 50%; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; |
| bottom: 60px; left: 50%; |
| transform: translateX(-50%); |
| width: 460px; height: 14px; |
| background: #E0DFDF; |
| border-radius: 8px; |
| opacity: 0.75; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>11:37</div> |
| <div class="status-icons"> |
| <span class="status-dot"></span> |
| <span class="status-dot"></span> |
| <span class="status-dot"></span> |
| <div class="battery"><div class="level"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="app-left"> |
| <button class="icon-btn" aria-label="Menu"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M3 5h18v2H3zM3 11h18v2H3zM3 17h18v2H3z" fill="#E7D1CB"/> |
| </svg> |
| </button> |
| <div class="app-title">All recordings</div> |
| </div> |
| <div class="app-actions"> |
| <button class="icon-btn" aria-label="Search"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="6.5" stroke="#E7D1CB" stroke-width="2.2" fill="none"/> |
| <path d="M16.5 16.5l4.5 4.5" stroke="#E7D1CB" stroke-width="2.2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </button> |
| <button class="icon-btn" aria-label="Filter"> |
| <svg class="icon" viewBox="0 0 24 24"> |
| <path d="M3 5h18l-7 7v6l-4-2v-4z" fill="#E7D1CB"/> |
| </svg> |
| </button> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
|
|
| |
| <div class="chip"> |
| <svg class="folder-icon" viewBox="0 0 24 24"> |
| <path d="M10 4l2 2h8a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h6z" fill="#FFB2AA"/> |
| </svg> |
| <span>ALL RECORDINGS</span> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-title">recording2023-11-17 12-16-50</div> |
| <div class="card-right"> |
| <span class="duration">00:07</span> |
| <div class="more-vert"> |
| <svg class="icon-small" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="12" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="19" r="2" fill="#E7D1CB"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="card-sub"> |
| <span class="live-dot"></span> |
| <span>Nov 17, 2023 12:16 PM</span> |
| </div> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-6.5-4.2-8.6-7.1C1.7 11.5 2.7 8.5 5.4 7.6c2-0.6 3.6 0.4 4.6 1.8 1-1.4 2.6-2.4 4.6-1.8 2.7 0.9 3.7 3.9 2 6.3C18.5 16.8 12 21 12 21z" fill="none" stroke="#E64A3B" stroke-width="2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-title">recording2023-11-17 14-10-57</div> |
| <div class="card-right"> |
| <span class="duration">00:03</span> |
| <div class="more-vert"> |
| <svg class="icon-small" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="12" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="19" r="2" fill="#E7D1CB"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="card-sub"> |
| <span class="live-dot"></span> |
| <span>Nov 17, 2023 2:11 PM</span> |
| </div> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-6.5-4.2-8.6-7.1C1.7 11.5 2.7 8.5 5.4 7.6c2-0.6 3.6 0.4 4.6 1.8 1-1.4 2.6-2.4 4.6-1.8 2.7 0.9 3.7 3.9 2 6.3C18.5 16.8 12 21 12 21z" fill="none" stroke="#E64A3B" stroke-width="2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-title">recording2023-11-20 10-43-12</div> |
| <div class="card-right"> |
| <span class="duration">00:44</span> |
| <div class="more-vert"> |
| <svg class="icon-small" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="12" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="19" r="2" fill="#E7D1CB"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="card-sub"> |
| <span class="live-dot"></span> |
| <span>Nov 20, 2023 10:44 AM</span> |
| </div> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-6.5-4.2-8.6-7.1C1.7 11.5 2.7 8.5 5.4 7.6c2-0.6 3.6 0.4 4.6 1.8 1-1.4 2.6-2.4 4.6-1.8 2.7 0.9 3.7 3.9 2 6.3C18.5 16.8 12 21 12 21z" fill="none" stroke="#E64A3B" stroke-width="2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-title">recording2023-11-20 10-48-48</div> |
| <div class="card-right"> |
| <span class="duration">00:02</span> |
| <div class="more-vert"> |
| <svg class="icon-small" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="12" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="19" r="2" fill="#E7D1CB"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="card-sub"> |
| <span class="live-dot"></span> |
| <span>Nov 20, 2023 10:48 AM</span> |
| </div> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-6.5-4.2-8.6-7.1C1.7 11.5 2.7 8.5 5.4 7.6c2-0.6 3.6 0.4 4.6 1.8 1-1.4 2.6-2.4 4.6-1.8 2.7 0.9 3.7 3.9 2 6.3C18.5 16.8 12 21 12 21z" fill="none" stroke="#E64A3B" stroke-width="2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="card"> |
| <div class="card-header"> |
| <div class="card-title">recording2023-11-20 10-51-32</div> |
| <div class="card-right"> |
| <span class="duration">02:01</span> |
| <div class="more-vert"> |
| <svg class="icon-small" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="12" r="2" fill="#E7D1CB"/> |
| <circle cx="12" cy="19" r="2" fill="#E7D1CB"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="card-sub"> |
| <span class="live-dot"></span> |
| <span>Nov 20, 2023 10:53 AM</span> |
| </div> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-6.5-4.2-8.6-7.1C1.7 11.5 2.7 8.5 5.4 7.6c2-0.6 3.6 0.4 4.6 1.8 1-1.4 2.6-2.4 4.6-1.8 2.7 0.9 3.7 3.9 2 6.3C18.5 16.8 12 21 12 21z" fill="none" stroke="#E64A3B" stroke-width="2" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="fab"><div class="inner-dot"></div></div> |
|
|
| |
| <div class="gesture-bar"></div> |
|
|
| </div> |
| </body> |
| </html> |