| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>New folder</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #202124; |
| color: #E8EAED; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 120px; |
| padding: 0 32px; |
| box-sizing: border-box; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #E8EAED; |
| font-size: 40px; |
| letter-spacing: 0.5px; |
| } |
| .status-right { |
| display: flex; align-items: center; gap: 26px; |
| } |
| .icon { width: 40px; height: 40px; } |
| .battery { |
| display: flex; align-items: center; gap: 12px; font-size: 34px; color: #E8EAED; |
| } |
| .battery svg { width: 52px; height: 32px; } |
| |
| |
| .app-bar { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 100%; |
| height: 140px; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| box-sizing: border-box; |
| gap: 22px; |
| } |
| .back-btn svg { width: 56px; height: 56px; fill: #E8EAED; } |
| .title { font-size: 64px; font-weight: 500; color: #E8EAED; } |
| |
| |
| .form-wrap { |
| position: absolute; |
| top: 360px; |
| left: 40px; |
| width: 1000px; |
| } |
| .input-field { |
| position: relative; |
| width: 1000px; |
| height: 180px; |
| border: 3px solid #8AB4F8; |
| border-radius: 22px; |
| box-sizing: border-box; |
| padding: 58px 36px 36px 36px; |
| color: #E8EAED; |
| } |
| .input-label { |
| position: absolute; |
| top: 14px; |
| left: 26px; |
| font-size: 38px; |
| color: #8AB4F8; |
| } |
| .caret { |
| position: absolute; |
| top: 98px; |
| left: 44px; |
| width: 2px; |
| height: 64px; |
| background: #8AB4F8; |
| border-radius: 2px; |
| } |
| |
| |
| .actions { |
| position: absolute; |
| top: 610px; |
| left: 40px; |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .btn { |
| display: inline-flex; |
| align-items: center; |
| gap: 16px; |
| padding: 24px 34px; |
| font-size: 44px; |
| border-radius: 18px; |
| border: none; |
| background: transparent; |
| cursor: default; |
| } |
| .btn-outline { |
| border: 3px solid #8AB4F8; |
| color: #8AB4F8; |
| } |
| .btn-outline svg { fill: #8AB4F8; width: 44px; height: 44px; } |
| .btn-disabled { |
| background: #3C4043; |
| color: #9AA0A6; |
| } |
| .btn-disabled svg { fill: #9AA0A6; width: 44px; height: 44px; } |
| |
| |
| .gesture-area { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 100%; |
| height: 140px; |
| background: #000000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .gesture-pill { |
| width: 260px; |
| height: 14px; |
| background: #FFFFFF; |
| opacity: 0.9; |
| border-radius: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left">6:12</div> |
| <div class="status-right"> |
| |
| <svg class="icon" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="#E8EAED"/></svg> |
| <svg class="icon" viewBox="0 0 24 24"><path d="M3 7h18l-4 10H7L3 7z" fill="#E8EAED"/></svg> |
| <svg class="icon" viewBox="0 0 24 24"><rect x="2" y="6" width="20" height="12" rx="2" fill="#E8EAED"/></svg> |
| <div class="battery"> |
| <svg viewBox="0 0 36 18"> |
| <rect x="1" y="3" width="30" height="12" rx="2" fill="none" stroke="#E8EAED" stroke-width="2"/> |
| <rect x="4" y="5" width="24" height="8" rx="1" fill="#E8EAED"/> |
| <rect x="32" y="6" width="3" height="6" rx="1" fill="#E8EAED"/> |
| </svg> |
| <span>100%</span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M15 18l-6-6 6-6" fill="none" stroke="#E8EAED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
| <div class="title">New folder</div> |
| </div> |
|
|
| |
| <div class="form-wrap"> |
| <div class="input-field"> |
| <div class="input-label">Folder name</div> |
| <div class="caret"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="actions"> |
| <button class="btn btn-outline"> |
| <svg viewBox="0 0 24 24"><path d="M18 6L6 18M6 6l12 12" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg> |
| Cancel |
| </button> |
| <button class="btn btn-disabled"> |
| <svg viewBox="0 0 24 24"><path d="M12 5v14M5 12h14" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round"/></svg> |
| Create |
| </button> |
| </div> |
|
|
| |
| <div class="gesture-area"> |
| <div class="gesture-pill"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |