| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="utf-8"> |
| <title>UI Render</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; height: 2400px; |
| position: relative; overflow: hidden; |
| background: #121212; color: #FFFFFF; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| } |
| |
| |
| .status-bar { |
| height: 96px; |
| background: #000000; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| font-size: 36px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .dot { width: 14px; height: 14px; background: #FFFFFF; border-radius: 50%; opacity: 0.9; } |
| .battery { |
| width: 52px; height: 26px; border: 3px solid #fff; border-radius: 6px; position: relative; |
| } |
| .battery::after { content: ""; position: absolute; right: -10px; top: 6px; width: 8px; height: 14px; background: #fff; border-radius: 2px; } |
| .battery .level { position: absolute; left: 4px; top: 4px; height: 16px; width: 34px; background: #8BC34A; } |
| |
| |
| .appbar { |
| position: relative; |
| height: 132px; |
| display: flex; |
| align-items: center; |
| padding: 0 24px; |
| border-bottom: 1px solid #1E1E1E; |
| } |
| .appbar .left { |
| width: 120px; display: flex; align-items: center; justify-content: flex-start; |
| } |
| .appbar .center { |
| position: absolute; left: 50%; transform: translateX(-50%); |
| font-size: 44px; font-weight: 600; |
| } |
| .appbar .right { |
| margin-left: auto; font-size: 36px; color: #4EA4FF; font-weight: 600; |
| } |
| .icon-btn { width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; } |
| .icon-btn svg { width: 44px; height: 44px; fill: none; stroke: #fff; stroke-width: 5; stroke-linecap: round; } |
| |
| |
| .header-row { |
| display: flex; align-items: baseline; |
| padding: 32px 28px 20px 28px; |
| } |
| .header-row .title { |
| font-size: 36px; font-weight: 600; |
| } |
| .header-row .count { |
| margin-left: auto; font-size: 32px; color: #B0B0B0; |
| } |
| |
| |
| .list { padding: 0 24px 160px 24px; } |
| .item { |
| display: flex; align-items: flex-start; |
| margin-bottom: 42px; |
| } |
| .thumb { |
| width: 360px; height: 202px; |
| background: #E0E0E0; border: 1px solid #BDBDBD; |
| border-radius: 18px; |
| display: flex; align-items: center; justify-content: center; |
| color: #757575; |
| position: relative; |
| flex-shrink: 0; |
| } |
| .thumb.vevo { border: 3px solid #E6C54A; } |
| .thumb .label { font-size: 28px; text-align: center; padding: 0 16px; } |
| .duration { |
| position: absolute; right: 12px; bottom: 12px; |
| background: rgba(0,0,0,0.85); color: #fff; |
| font-size: 28px; padding: 8px 12px; border-radius: 8px; |
| } |
| .pill { |
| position: absolute; right: 12px; top: 12px; |
| background: #D32F2F; color: #fff; font-size: 26px; |
| padding: 6px 12px; border-radius: 14px; font-weight: 600; |
| } |
| .vevo-tag { |
| position: absolute; left: 12px; bottom: 12px; |
| background: rgba(0,0,0,0.85); color: #fff; font-size: 24px; |
| padding: 4px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; |
| } |
| .meta { |
| flex: 1; padding: 2px 22px; |
| } |
| .title-text { |
| font-size: 34px; line-height: 44px; color: #F1F1F1; |
| display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; |
| } |
| .channel { |
| margin-top: 8px; font-size: 28px; color: #BDBDBD; |
| } |
| .stats { |
| margin-top: 6px; font-size: 26px; color: #9E9E9E; |
| } |
| .checkbox { |
| width: 54px; height: 54px; border: 3px solid #808080; border-radius: 8px; |
| margin-left: 16px; margin-top: 6px; |
| } |
| |
| |
| .floating-preview { |
| position: absolute; left: 600px; top: 1080px; |
| width: 420px; height: 236px; |
| background: #0A0A0A; border-radius: 18px; |
| box-shadow: 0 12px 30px rgba(0,0,0,0.6); |
| display: flex; align-items: center; justify-content: center; |
| border: 1px solid #2A2A2A; |
| } |
| .floating-preview .thumb { |
| width: 392px; height: 220px; border-radius: 16px; |
| } |
| |
| |
| .gesture { |
| position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); |
| width: 300px; height: 12px; background: #D0D0D0; border-radius: 8px; opacity: 0.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>8:27</div> |
| <div class="status-icons"> |
| <div class="dot"></div> |
| <div class="dot" style="opacity:0.6;"></div> |
| <div class="dot" style="opacity:0.8;"></div> |
| <div class="battery"><div class="level"></div></div> |
| </div> |
| </div> |
|
|
| |
| <div class="appbar"> |
| <div class="left"> |
| <div class="icon-btn" aria-label="Close"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 5 L19 19 M19 5 L5 19"></path> |
| </svg> |
| </div> |
| </div> |
| <div class="center">Add videos</div> |
| <div class="right">Next</div> |
| </div> |
|
|
| |
| <div class="header-row"> |
| <div class="title">Recently Watched</div> |
| <div class="count">0 videos selected</div> |
| </div> |
|
|
| |
| <div class="list"> |
|
|
| |
| <div class="item"> |
| <div class="thumb"> |
| <div class="label">[IMG: Fashion street & runway montage]</div> |
| <div class="pill">LIVE</div> |
| <div class="duration">8:03</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">🍁 Autumn outfits inspo. Milan's fashion life in anticipation of M...</div> |
| <div class="channel">MILAN ON TREND Live</div> |
| <div class="stats">13K views • 1 day ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb vevo"> |
| <div class="label">[IMG: Pavarotti & James Brown performance]</div> |
| <div class="vevo-tag">vevo</div> |
| <div class="duration">4:59</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Luciano Pavarotti, James Brown - It's A Man's Man's Man's World</div> |
| <div class="channel">Luciano Pavarotti</div> |
| <div class="stats">92M views • 4 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb"> |
| <div class="label">[IMG: Catwalk fashion show with lattice backdrop]</div> |
| <div class="duration">15:38</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">FIRDAWS | FULL FASHION SHOW</div> |
| <div class="channel">SERGEI SHUBENTSEV</div> |
| <div class="stats">527K views • 6 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb"> |
| <div class="label">[IMG: Arabic bridal fashion collage]</div> |
| <div class="duration">1:11</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Arabic makeup/Arabic Jewellery /hairstyle /arabic dr...</div> |
| <div class="channel">fashion trend minsha</div> |
| <div class="stats">2.9K views • 1 year ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb vevo"> |
| <div class="label">[IMG: Stage performance with podium and microphone]</div> |
| <div class="vevo-tag">vevo</div> |
| <div class="duration">4:31</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Ma... - H...</div> |
| <div class="channel">Luc...</div> |
| <div class="stats">9.7M views • ...</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb"> |
| <div class="label">[IMG: Comedy short in kitchen]</div> |
| <div class="duration">1:01</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Crazy... Le...</div> |
| <div class="channel">DesSoFunny</div> |
| <div class="stats">9.5M views • 3 weeks ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb"> |
| <div class="label">[IMG: Child on couch reacts to mom’s comment]</div> |
| <div class="duration">0:25</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Toddler goes into denial when mom tells her it’s Football Satu...</div> |
| <div class="channel">Majically News</div> |
| <div class="stats">23M views • 9 months ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb"> |
| <div class="label">[IMG: Pavarotti & Celine Dion duet on stage]</div> |
| <div class="duration">5:06</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Luciano Pavarotti & Celine Dion - I Hate You Then I Love You</div> |
| <div class="channel">glennSuperdude</div> |
| <div class="stats">29M views • 10 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| |
| <div class="item"> |
| <div class="thumb vevo"> |
| <div class="label">[IMG: Pavarotti & Bryan Adams live concert]</div> |
| <div class="vevo-tag">vevo</div> |
| <div class="duration">3:19</div> |
| </div> |
| <div class="meta"> |
| <div class="title-text">Luciano Pavarotti, Bryan Adams - 'O Sole Mio (Live)</div> |
| <div class="channel">Luciano Pavarotti</div> |
| <div class="stats">3.9M views • 4 years ago</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="floating-preview"> |
| <div class="thumb"> |
| <div class="label">[IMG: Purple sketch artwork thumbnail]</div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture"></div> |
|
|
| </div> |
| </body> |
| </html> |