| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>Passwords & Accounts - Android UI</title> |
| <style> |
| body { margin:0; padding:0; background:transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width:1080px; height:2400px; |
| position:relative; overflow:hidden; |
| background:#FCFCF8; |
| color:#222; |
| } |
| |
| .status-bar { |
| position:absolute; top:0; left:0; right:0; |
| height:100px; |
| padding:0 36px; |
| display:flex; align-items:center; justify-content:space-between; |
| font-weight:600; color:#2b2b2b; |
| } |
| .status-left { display:flex; align-items:center; gap:24px; } |
| .status-time { font-size:44px; letter-spacing:0.5px; } |
| .status-icons { display:flex; align-items:center; gap:26px; } |
| .icon-dot{ width:10px; height:10px; background:#555; border-radius:50%; } |
| .ic { width:40px; height:40px; } |
| .ic svg { width:100%; height:100%; } |
| |
| .back-btn { |
| position:absolute; top:120px; left:36px; |
| width:70px; height:70px; display:flex; align-items:center; justify-content:center; |
| } |
| |
| .title { |
| position:absolute; top:210px; left:48px; right:48px; |
| font-size:92px; font-weight:700; line-height:1.06; |
| } |
| |
| .section { |
| position:absolute; left:48px; right:48px; |
| } |
| .sec-label { |
| color:#2E7D32; font-weight:700; font-size:42px; |
| margin-bottom:28px; |
| } |
| .row { |
| display:flex; align-items:center; gap:32px; |
| padding:24px 0; |
| border-bottom:1px solid #E8E8E8; |
| } |
| .avatar { |
| width:94px; height:94px; border-radius:50%; |
| display:flex; align-items:center; justify-content:center; |
| font-weight:700; font-size:36px; color:#fff; |
| } |
| .avatar.google { background:#4285F4; } |
| .avatar.adobe { background:#D32F2F; border-radius:18px; } |
| .avatar.airbnb { background:#FF8DA1; } |
| .avatar.duo { background:#7CB342; } |
| .avatar.note { background:#64B5F6; border-radius:20px; } |
| .row-content { flex:1; } |
| .row-title { font-size:54px; font-weight:700; } |
| .row-sub { font-size:36px; color:#6A6A6A; margin-top:6px; } |
| |
| .divider { |
| width:2px; height:70px; background:#D8D8D8; margin:0 20px; |
| } |
| .gear { |
| width:70px; height:70px; border-radius:14px; |
| display:flex; align-items:center; justify-content:center; |
| } |
| .gear svg { width:60px; height:60px; fill:#2E7D32; } |
| |
| #sec-passwords { top:520px; } |
| #sec-autofill { top:800px; } |
| #sec-accounts { top:1120px; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div class="status-time">9:55</div> |
| |
| <div class="ic"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 10h16v10H4z" fill="#9E9E9E"></path> |
| <path d="M6 12h12v6H6z" fill="#4CAF50"></path> |
| </svg> |
| </div> |
| <div class="ic"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 2l4 8H8l4-8zm0 20a4 4 0 100-8 4 4 0 000 8z" fill="#9E9E9E"></path> |
| </svg> |
| </div> |
| <div class="ic"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 14h16v2H4zm3-4h10v2H7zm5-4h0" fill="#9E9E9E"></path> |
| </svg> |
| </div> |
| <div class="icon-dot"></div> |
| </div> |
| <div class="status-icons"> |
| <div class="ic"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M2 18h20v2H2zM6 11l6-6 6 6" fill="#9E9E9E"></path> |
| </svg> |
| </div> |
| <div class="ic"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M3 8h18v8H3z" fill="#9E9E9E"></path> |
| <path d="M20 4v2M4 4v2" stroke="#9E9E9E" stroke-width="2"></path> |
| </svg> |
| </div> |
| <div class="ic"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M6 18h12c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2H6c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2z" fill="#9E9E9E"></path> |
| <path d="M20 6v12M4 6v12" stroke="#9E9E9E"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="back-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M15 19L8 12l7-7" stroke="#222" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
|
|
| |
| <div class="title">Passwords & accounts</div> |
|
|
| |
| <div class="section" id="sec-passwords"> |
| <div class="sec-label">Passwords</div> |
| <div class="row"> |
| <div class="avatar google">G</div> |
| <div class="row-content"> |
| <div class="row-title">Google</div> |
| <div class="row-sub">5 passwords</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="sec-autofill"> |
| <div class="sec-label">Autofill service</div> |
| <div class="row" style="border-bottom:none;"> |
| <div class="avatar google">G</div> |
| <div class="row-content"> |
| <div class="row-title">Google</div> |
| </div> |
| <div class="divider"></div> |
| <div class="gear"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 8a4 4 0 110 8 4 4 0 010-8zm8.7 3l-1.9-.5c-.2-.6-.5-1.2-.8-1.7l1.1-1.6-1.7-1.7-1.6 1.1c-.5-.3-1.1-.6-1.7-.8L13 2.3h-2L9.9 4c-.6.2-1.2.5-1.7.8L6.6 3.7 4.9 5.4l1.1 1.6c-.3.5-.6 1.1-.8 1.7L3.3 9h-2l.3 2 1.9.5c.2.6.5 1.2.8 1.7l-1.1 1.6 1.7 1.7 1.6-1.1c.5.3 1.1.6 1.7.8l.5 1.9h2l.5-1.9c.6-.2 1.2-.5 1.7-.8l1.6 1.1 1.7-1.7-1.1-1.6c.3-.5.6-1.1.8-1.7l1.9-.5.3-2h-2z" fill="#2E7D32"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="section" id="sec-accounts"> |
| <div class="sec-label">Accounts for Owner</div> |
|
|
| <div class="row"> |
| <div class="avatar adobe">A</div> |
| <div class="row-content"> |
| <div class="row-title">dbwscratch.test.id2@gmail.com</div> |
| <div class="row-sub">Adobe</div> |
| </div> |
| </div> |
|
|
| <div class="row"> |
| <div class="avatar airbnb">A</div> |
| <div class="row-content"> |
| <div class="row-title">dbwscratch.test.id2@gmail.com</div> |
| <div class="row-sub">Airbnb</div> |
| </div> |
| </div> |
|
|
| <div class="row"> |
| <div class="avatar duo">D</div> |
| <div class="row-content"> |
| <div class="row-title">Duolingo</div> |
| <div class="row-sub">Duolingo</div> |
| </div> |
| </div> |
|
|
| <div class="row"> |
| <div class="avatar note">n</div> |
| <div class="row-content"> |
| <div class="row-title">note</div> |
| <div class="row-sub">Easy Notes</div> |
| </div> |
| </div> |
|
|
| <div class="row" style="border-bottom:none;"> |
| <div class="avatar google">G</div> |
| <div class="row-content"> |
| <div class="row-title">dbwscratch.test.id2@gmail.com</div> |
| <div class="row-sub">Google</div> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |