| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Settings UI</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| color: #EDEDED; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #121212; |
| } |
| |
| |
| .status-bar { |
| height: 90px; |
| padding: 0 32px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #EDEDED; |
| font-weight: 600; |
| font-size: 36px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .icon { |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .app-bar { |
| height: 120px; |
| padding: 0 24px; |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .title { |
| font-size: 44px; |
| font-weight: 600; |
| color: #EDEDED; |
| letter-spacing: 0.2px; |
| flex: 1; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| } |
| .menu-button { |
| width: 72px; |
| height: 72px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| |
| .content { |
| padding: 12px 24px 140px 24px; |
| } |
| |
| .section-title { |
| color: #8BC34A; |
| font-size: 34px; |
| font-weight: 700; |
| margin: 28px 0 18px 0; |
| } |
| |
| .setting-item { |
| padding: 24px 0; |
| border-top: 1px solid rgba(255,255,255,0.06); |
| } |
| .setting-item:first-child { |
| border-top: none; |
| } |
| .setting-title { |
| font-size: 38px; |
| font-weight: 600; |
| color: #FAFAFA; |
| margin-bottom: 8px; |
| } |
| .setting-sub { |
| font-size: 30px; |
| color: #BDBDBD; |
| } |
| |
| .divider { |
| height: 1px; |
| background: rgba(255,255,255,0.06); |
| margin: 10px -24px 10px -24px; |
| } |
| |
| |
| .setting-row { |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .checkbox { |
| width: 52px; |
| height: 52px; |
| border: 3px solid #BDBDBD; |
| border-radius: 8px; |
| background: transparent; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; |
| bottom: 34px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 320px; |
| height: 16px; |
| background: #EDEDED; |
| border-radius: 16px; |
| opacity: 0.85; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div>11:27</div> |
| <div class="status-right"> |
| |
| <svg class="icon" width="38" height="38" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="10" fill="none" stroke="#EDEDED" stroke-width="2"/> |
| <rect x="6" y="11" width="12" height="2" fill="#EDEDED"/> |
| </svg> |
| |
| <svg class="icon" width="48" height="48" viewBox="0 0 32 32"> |
| <rect x="2" y="6" width="24" height="20" rx="4" ry="4" fill="none" stroke="#EDEDED" stroke-width="2"/> |
| <rect x="26" y="12" width="4" height="8" fill="#EDEDED"/> |
| <rect x="4" y="8" width="18" height="16" fill="#EDEDED"/> |
| </svg> |
| <div style="font-size: 30px; color:#EDEDED;">100%</div> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| |
| <svg class="icon" width="64" height="64" viewBox="0 0 24 24"> |
| <path d="M15 6l-6 6 6 6" fill="none" stroke="#EDEDED" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| <div class="title">kariniversen641@gmail.com</div> |
| |
| <div class="menu-button"> |
| <svg width="32" height="32" viewBox="0 0 24 24"> |
| <circle cx="12" cy="5" r="2.2" fill="#EDEDED"/> |
| <circle cx="12" cy="12" r="2.2" fill="#EDEDED"/> |
| <circle cx="12" cy="19" r="2.2" fill="#EDEDED"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
|
|
| <div class="section-title">Account</div> |
| <div class="setting-item"> |
| <div class="setting-title">Manage your Google Account</div> |
| </div> |
|
|
| <div class="section-title">Inbox</div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Inbox type</div> |
| <div class="setting-sub">Default Inbox</div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Inbox categories</div> |
| <div class="setting-sub">Primary, Promotions, Social</div> |
| </div> |
|
|
| <div class="section-title">Notifications</div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Notifications</div> |
| <div class="setting-sub">All</div> |
| </div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Inbox notifications</div> |
| <div class="setting-sub">Notify once</div> |
| </div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Manage labels</div> |
| </div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Notification sounds</div> |
| </div> |
|
|
| <div class="setting-item"> |
| <div class="setting-title">Manage notifications</div> |
| </div> |
|
|
| <div class="section-title">General</div> |
|
|
| <div class="setting-item setting-row"> |
| <div> |
| <div class="setting-title">Chat</div> |
| <div class="setting-sub">Show the chat and spaces tabs</div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |