| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Contacts - Dark UI</title> |
| <style> |
| :root{ |
| --bg:#0f2426; |
| --surface:#1b3536; |
| --surface-2:#163133; |
| --border:#2a4d4e; |
| --text:#d8e8e3; |
| --muted:#9bb8b2; |
| --accent:#285e4d; |
| --pill:#214542; |
| } |
| body{ margin:0; padding:0; background:transparent; font-family: Roboto, Arial, sans-serif; } |
| #render-target{ |
| position:relative; overflow:hidden; |
| width:1080px; height:2400px; |
| background:var(--bg); |
| color:var(--text); |
| } |
| |
| |
| .statusbar{ |
| height:96px; padding:24px 32px 0 32px; box-sizing:border-box; |
| display:flex; align-items:center; justify-content:space-between; color:#e6f0ec; font-weight:500; |
| font-size:34px; |
| } |
| .status-icons{ display:flex; gap:18px; align-items:center; } |
| .status-dot{ width:10px; height:10px; border-radius:50%; background:#cfe7e0; opacity:.7; } |
| .icon-circle{ width:26px; height:26px; border-radius:50%; border:2px solid #cfe7e0; opacity:.7; } |
| |
| |
| .top-area{ padding:24px 36px 0 36px; } |
| .search-bar{ |
| height:120px; border-radius:60px; background:var(--surface); |
| border:2px solid var(--border); display:flex; align-items:center; |
| padding:0 30px; box-sizing:border-box; |
| } |
| .search-placeholder{ color:#cde2de; font-size:40px; letter-spacing:.2px; flex:1; padding-left:16px; } |
| .menu-btn, .more-btn{ width:48px; height:48px; } |
| .profile-avatar{ |
| width:84px; height:84px; border-radius:50%; |
| background:#d4772f; color:#1a1a1a; font-weight:600; font-size:40px; |
| display:flex; align-items:center; justify-content:center; margin-left:18px; |
| } |
| |
| |
| .filters{ display:flex; gap:22px; margin-top:26px; } |
| .filter-btn{ |
| display:flex; align-items:center; gap:16px; padding:20px 26px; |
| border:2px solid var(--border); border-radius:24px; color:#d1e3de; background:transparent; |
| font-size:34px; |
| } |
| .filter-btn svg{ width:40px; height:40px; } |
| |
| |
| .account{ display:flex; align-items:center; gap:16px; margin:28px 0 18px 8px; color:var(--muted); font-size:32px; } |
| .divider{ height:2px; background:var(--border); margin:8px -36px 0 -36px; } |
| |
| |
| .list{ margin-top:22px; } |
| .contact-row{ |
| display:flex; align-items:center; height:160px; padding:0 36px; box-sizing:border-box; |
| border-bottom:1px solid rgba(255,255,255,.04); |
| } |
| .alpha{ |
| width:60px; text-align:center; color:#8bd4b9; font-size:40px; margin-right:16px; |
| } |
| .contact-avatar{ |
| width:96px; height:96px; border-radius:50%; display:flex; align-items:center; justify-content:center; |
| color:#152123; font-weight:700; font-size:44px; margin-right:26px; |
| } |
| .name{ font-size:44px; color:#ddebe7; } |
| |
| |
| .fab{ |
| position:absolute; right:48px; bottom:280px; width:124px; height:124px; |
| background:var(--accent); border-radius:28px; box-shadow:0 16px 28px rgba(0,0,0,.35); |
| display:flex; align-items:center; justify-content:center; |
| } |
| .fab svg{ width:56px; height:56px; } |
| |
| |
| .bottom-nav{ |
| position:absolute; left:0; right:0; bottom:0; height:220px; background:var(--surface-2); |
| border-top:2px solid var(--border); display:flex; align-items:center; justify-content:space-around; |
| padding-bottom:18px; |
| } |
| .nav-item{ width:33%; text-align:center; color:#bcd3cf; } |
| .nav-label{ font-size:32px; margin-top:14px; } |
| .nav-item svg{ width:54px; height:54px; } |
| .active .nav-label{ color:#ffffff; } |
| .icon-pill{ |
| width:140px; height:88px; border-radius:44px; background:var(--accent); |
| margin:0 auto; display:flex; align-items:center; justify-content:center; |
| } |
| .handle{ |
| position:absolute; left:50%; transform:translateX(-50%); |
| bottom:14px; width:220px; height:10px; background:#e5e9e8; border-radius:6px; opacity:.7; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="statusbar"> |
| <div>9:56</div> |
| <div class="status-icons"> |
| <div class="status-dot"></div> |
| <div class="icon-circle"></div> |
| <div class="icon-circle"></div> |
| <div class="status-dot"></div> |
| <div style="display:flex; align-items:center; gap:12px;"> |
| <svg width="28" height="28" viewBox="0 0 24 24"><path d="M3 11h18v9H3z" stroke="#e6f0ec" stroke-width="2" fill="none"/><path d="M7 11V6h10v5" stroke="#e6f0ec" stroke-width="2" fill="none"/></svg> |
| <span style="font-size:32px;">100%</span> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="top-area"> |
| <div class="search-bar"> |
| <svg class="menu-btn" viewBox="0 0 24 24"> |
| <path d="M3 6h18M3 12h18M3 18h18" stroke="#a5c6c1" stroke-width="2.4" stroke-linecap="round" fill="none"/> |
| </svg> |
| <div class="search-placeholder">Search contacts</div> |
| <svg class="more-btn" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2.2" fill="#a5c6c1"/> |
| <circle cx="12" cy="12" r="2.2" fill="#a5c6c1"/> |
| <circle cx="12" cy="19" r="2.2" fill="#a5c6c1"/> |
| </svg> |
| <div class="profile-avatar">R</div> |
| </div> |
|
|
| |
| <div class="filters"> |
| <div class="filter-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M5 6c3 6 8 11 14 14l2-2-4-4-2 2C11.5 15 9 12.5 8 9.5l2-2-4-4-2 2z" stroke="#bcd3cf" stroke-width="1.8" fill="none" stroke-linejoin="round"/> |
| </svg> |
| <span>Phone contacts</span> |
| </div> |
| <div class="filter-btn"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="5" width="18" height="14" rx="2" stroke="#bcd3cf" stroke-width="1.8" fill="none"/> |
| <path d="M3 5l9 7 9-7" stroke="#bcd3cf" stroke-width="1.8" fill="none"/> |
| </svg> |
| <span>Email contacts</span> |
| </div> |
| <div class="filter-btn"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="4" y="4" width="16" height="16" rx="2" stroke="#bcd3cf" stroke-width="1.8" fill="none"/> |
| <path d="M8 8h2v2H8zm0 4h2v2H8zm4-4h2v2h-2zm0 4h2v2h-2" fill="#bcd3cf"/> |
| </svg> |
| <span>Company</span> |
| </div> |
| </div> |
|
|
| |
| <div class="account"> |
| <svg width="40" height="40" viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4" stroke="#9bb8b2" stroke-width="1.8" fill="none"/> |
| <path d="M4 20c2-4 12-4 16 0" stroke="#9bb8b2" stroke-width="1.8" fill="none" stroke-linecap="round"/> |
| </svg> |
| <span>richardwegnar@gmail.com • 2 contacts</span> |
| </div> |
| <div class="divider"></div> |
| </div> |
|
|
| |
| <div class="list"> |
| <div class="contact-row"> |
| <div class="alpha">A</div> |
| <div class="contact-avatar" style="background:#d77262;">A</div> |
| <div class="name">Andreas Wagner</div> |
| </div> |
| <div class="contact-row"> |
| <div class="alpha">C</div> |
| <div class="contact-avatar" style="background:#f670b5;">C</div> |
| <div class="name">Clara Wagner</div> |
| </div> |
| </div> |
|
|
| |
| <div class="fab"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 5v14M5 12h14" stroke="#ffffff" stroke-width="2.8" stroke-linecap="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="bottom-nav"> |
| <div class="nav-item active"> |
| <div class="icon-pill"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="8" r="4" stroke="#ffffff" stroke-width="2" fill="none"/> |
| <path d="M4 20c2-4 12-4 16 0" stroke="#ffffff" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="nav-label">Contacts</div> |
| </div> |
| <div class="nav-item"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3l3 6 6 1-4.5 4 1 6-5.5-3-5.5 3 1-6L3 10l6-1z" stroke="#bcd3cf" stroke-width="2" fill="none" stroke-linejoin="round"/> |
| </svg> |
| <div class="nav-label">Highlights</div> |
| </div> |
| <div class="nav-item"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M21 7l-4 4-4-4 4-4a4 4 0 10-5 5l-7 7 3 3 7-7a4 4 0 005-5z" stroke="#bcd3cf" stroke-width="2" fill="none" stroke-linejoin="round"/> |
| </svg> |
| <div class="nav-label">Fix & manage</div> |
| </div> |
| <div class="handle"></div> |
| </div> |
| </div> |
| </body> |
| </html> |