| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="utf-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Settings Screen Mock</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: #121212; |
| color: #FFFFFF; |
| } |
| |
| |
| .status-bar { |
| height: 96px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #EDEDED; |
| font-size: 34px; |
| letter-spacing: 0.5px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .status-icon { |
| width: 32px; |
| height: 32px; |
| border-radius: 50%; |
| border: 2px solid #BDBDBD; |
| opacity: 0.8; |
| } |
| .battery { |
| display: inline-flex; |
| align-items: center; |
| gap: 10px; |
| color: #EDEDED; |
| font-size: 30px; |
| } |
| .battery-shape { |
| width: 48px; |
| height: 22px; |
| border: 2px solid #BDBDBD; |
| border-radius: 4px; |
| position: relative; |
| } |
| .battery-shape::after { |
| content: ""; |
| position: absolute; |
| right: -8px; |
| top: 6px; |
| width: 6px; |
| height: 10px; |
| background: #BDBDBD; |
| border-radius: 2px; |
| } |
| |
| |
| .toolbar { |
| height: 160px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| } |
| .toolbar-left { |
| display: flex; |
| align-items: center; |
| gap: 26px; |
| } |
| .title { |
| font-size: 64px; |
| font-weight: 500; |
| color: #FAFAFA; |
| } |
| .icon-btn { |
| width: 56px; |
| height: 56px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| color: #E0E0E0; |
| } |
| .icon { |
| width: 56px; |
| height: 56px; |
| } |
| |
| |
| .content { |
| padding: 24px 36px 0 36px; |
| } |
| .list { |
| margin-top: 8px; |
| } |
| .list-item { |
| padding: 36px 0; |
| border-bottom: 1px solid transparent; |
| color: #E0E0E0; |
| font-size: 44px; |
| line-height: 1.3; |
| } |
| .list-item + .list-item { |
| margin-top: 6px; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: 18px; |
| height: 110px; |
| display: flex; |
| align-items: flex-start; |
| justify-content: center; |
| } |
| .gesture-pill { |
| width: 240px; |
| height: 14px; |
| border-radius: 8px; |
| background: #E0E0E0; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="status-left">11:26</div> |
| <div class="status-right"> |
| <div class="status-icon" title="Status icon"></div> |
| <div class="status-icon" title="Status icon"></div> |
| <div class="status-icon" title="Status icon"></div> |
| <div class="battery"> |
| <div class="battery-shape"></div> |
| 100% |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="toolbar"> |
| <div class="toolbar-left"> |
| <div class="icon-btn" aria-label="Back"> |
| <svg class="icon" viewBox="0 0 48 48"> |
| <path d="M28 10 L14 24 L28 38" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"></path> |
| <path d="M14 24 L40 24" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"></path> |
| </svg> |
| </div> |
| <div class="title">Settings</div> |
| </div> |
| <div class="icon-btn" aria-label="More"> |
| <svg class="icon" viewBox="0 0 48 48"> |
| <circle cx="24" cy="10" r="4" fill="currentColor"></circle> |
| <circle cx="24" cy="24" r="4" fill="currentColor"></circle> |
| <circle cx="24" cy="38" r="4" fill="currentColor"></circle> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="list"> |
| <div class="list-item">General settings</div> |
| <div class="list-item">dbwscratch.test.id10@gmail.com</div> |
| <div class="list-item">kariniversen641@gmail.com</div> |
| <div class="list-item">Add account</div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture-bar"> |
| <div class="gesture-pill"></div> |
| </div> |
| </div> |
| </body> |
| </html> |