| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Settings UI Mock</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| position: relative; |
| width: 1080px; |
| height: 2400px; |
| overflow: hidden; |
| background: #121212; |
| color: #FFFFFF; |
| font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 96px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| padding: 0 40px; |
| box-sizing: border-box; |
| color: #EDEDED; |
| font-weight: 600; |
| font-size: 42px; |
| letter-spacing: 0.5px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .status-icon svg { width: 48px; height: 48px; fill: none; stroke: #EDEDED; stroke-width: 3.5; } |
| |
| |
| .search-bar { |
| position: absolute; |
| top: 120px; |
| left: 40px; |
| width: 1000px; |
| height: 124px; |
| background: #3A3A3A; |
| border-radius: 62px; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| } |
| .search-bar .icon { |
| margin-right: 28px; |
| } |
| .search-bar svg { |
| width: 56px; height: 56px; fill: none; stroke: #CFCFCF; stroke-width: 5; |
| } |
| .search-bar .placeholder { |
| color: #CFCFCF; |
| font-size: 46px; |
| font-weight: 500; |
| } |
| |
| |
| .list { |
| position: absolute; |
| top: 300px; |
| left: 0; |
| width: 100%; |
| padding: 0 40px 160px; |
| box-sizing: border-box; |
| } |
| .item { |
| display: flex; |
| align-items: flex-start; |
| gap: 40px; |
| padding: 46px 0; |
| } |
| .icon-box { |
| width: 74px; |
| height: 74px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .icon-box svg { |
| width: 74px; |
| height: 74px; |
| fill: none; |
| stroke: #DADADA; |
| stroke-width: 4.5; |
| } |
| .text .title { |
| font-size: 54px; |
| font-weight: 600; |
| color: #F1F1F1; |
| line-height: 1.2; |
| } |
| .text .subtitle { |
| margin-top: 16px; |
| font-size: 34px; |
| color: #A9A9A9; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 48px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 360px; |
| height: 12px; |
| background: #CFCFCF; |
| border-radius: 8px; |
| opacity: 0.8; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="status-left">10:20</div> |
| <div class="status-right"> |
| <div class="status-icon"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M2.5 8.5C7 4.5 17 4.5 21.5 8.5" /> |
| <path d="M6 12c4-3 8-3 12 0" /> |
| <path d="M10 15.5c2-1.6 4-1.6 6 0" /> |
| <circle cx="12" cy="18.5" r="1.7" fill="#EDEDED" stroke="none"/> |
| </svg> |
| </div> |
| <div class="status-icon"> |
| |
| <svg viewBox="0 0 26 24"> |
| <rect x="1.5" y="5" width="18" height="14" rx="2.5" /> |
| <rect x="21" y="9" width="3.5" height="6" rx="1.2" /> |
| <rect x="4" y="7.5" width="12" height="9" fill="#EDEDED" stroke="none"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="search-bar"> |
| <div class="icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="10" cy="10" r="7"/> |
| <path d="M15.5 15.5 L22 22"/> |
| </svg> |
| </div> |
| <div class="placeholder">Search settings</div> |
| </div> |
|
|
| |
| <div class="list"> |
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 21c-4-6-6.5-8.5-6.5-11.5a6.5 6.5 0 1 1 13 0C18.5 12.5 16 15 12 21z"/> |
| <circle cx="12" cy="9.5" r="2.5"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">Location</div> |
| <div class="subtitle">On - 8 apps have access to location</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 3 L12 21"/> |
| <path d="M3 12 L21 12"/> |
| <path d="M5.2 5.2 L18.8 18.8"/> |
| <path d="M18.8 5.2 L5.2 18.8"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">Safety & emergency</div> |
| <div class="subtitle">Emergency SOS, medical info, alerts</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="4" width="18" height="14" rx="2"/> |
| <rect x="5.5" y="6.5" width="6" height="6" rx="1.2"/> |
| <path d="M13.5 9.5h5M13.5 12.5h5"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">Passwords & accounts</div> |
| <div class="subtitle">Saved passwords, autofill, synced accounts</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 20s-7-4.8-7-9.2A4.8 4.8 0 0 1 9.8 6c1.3 0 2.3.6 3.2 1.6C13.9 6.6 15 6 16.2 6A4.8 4.8 0 0 1 19 10.8C19 15.2 12 20 12 20z"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">Digital Wellbeing & parental controls</div> |
| <div class="subtitle">Screen time, app timers, bedtime schedules</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9"/> |
| <path d="M9 8.5h4.5a3 3 0 1 1 0 6H11" /> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">Google</div> |
| <div class="subtitle">Services & preferences</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9"/> |
| <path d="M12 10v6"/> |
| <circle cx="12" cy="7" r="1.6"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">System</div> |
| <div class="subtitle">Languages, gestures, time, backup</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <rect x="5" y="3.5" width="14" height="17" rx="2"/> |
| <rect x="10" y="17.5" width="4" height="1.8" rx="0.9" fill="#DADADA" stroke="none"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">About phone</div> |
| <div class="subtitle">Pixel 5a</div> |
| </div> |
| </div> |
|
|
| <div class="item"> |
| <div class="icon-box"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9"/> |
| <path d="M9.5 9.3a3 3 0 0 1 5 1.7c0 1.7-1.5 2.3-2.2 2.8-.6.4-.8.8-.8 1.5"/> |
| <circle cx="12" cy="17.8" r="1.3"/> |
| </svg> |
| </div> |
| <div class="text"> |
| <div class="title">Tips & support</div> |
| <div class="subtitle">Help articles, phone & chat</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |