| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Loading Screen</title> |
| <style> |
| body { |
| margin: 0; |
| padding: 0; |
| background: transparent; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; |
| color: #212121; |
| } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #FFFFFF; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| box-sizing: border-box; |
| color: #616161; |
| font-size: 44px; |
| letter-spacing: 1px; |
| } |
| .status-left { |
| display: flex; |
| align-items: center; |
| gap: 24px; |
| } |
| .status-right { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .icon { |
| display: inline-flex; |
| width: 48px; |
| height: 48px; |
| color: #616161; |
| } |
| .icon svg { |
| width: 100%; |
| height: 100%; |
| } |
| |
| |
| .loading-wrap { |
| position: absolute; |
| top: 260px; |
| left: 0; |
| width: 100%; |
| text-align: center; |
| } |
| .loading { |
| display: inline-block; |
| font-size: 48px; |
| color: #212121; |
| } |
| |
| |
| .back-btn { |
| position: absolute; |
| left: 54px; |
| top: 520px; |
| width: 80px; |
| height: 80px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .back-btn svg { |
| width: 80%; |
| height: 80%; |
| stroke: #2E2E2E; |
| stroke-width: 12; |
| fill: none; |
| } |
| |
| |
| .nav-bar { |
| position: absolute; |
| left: 0; |
| bottom: 0; |
| width: 1080px; |
| height: 140px; |
| background: #000000; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .gesture-pill { |
| width: 340px; |
| height: 16px; |
| background: #D0D0D0; |
| border-radius: 12px; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div style="min-width:120px; text-align:left;">3:17</div> |
| |
| <span class="icon" title="Bell"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 22a2.5 2.5 0 0 0 2.5-2.5h-5A2.5 2.5 0 0 0 12 22Zm7-6V11a7 7 0 1 0-14 0v5l-2 2v1h18v-1l-2-2Z" fill="#757575"/> |
| </svg> |
| </span> |
| <span class="icon" title="Do Not Disturb"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="3" y="10.5" width="18" height="3" rx="1.5" fill="#757575"/> |
| </svg> |
| </span> |
| <span class="icon" title="Square"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="4" y="4" width="16" height="16" rx="2" fill="#757575"/> |
| </svg> |
| </span> |
| </div> |
| <div class="status-right"> |
| |
| <span class="icon" title="WiFi"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M12 18.5l2.5 2.5L12 23l-2.5-2 2.5-2.5Z" fill="#757575"/> |
| <path d="M2.5 9.5A16 16 0 0 1 12 6a16 16 0 0 1 9.5 3.5" stroke="#757575" stroke-width="2.2" fill="none" stroke-linecap="round"/> |
| <path d="M5.5 12.5A12 12 0 0 1 12 10a12 12 0 0 1 6.5 2.5" stroke="#757575" stroke-width="2.2" fill="none" stroke-linecap="round"/> |
| <path d="M8.5 15.5A8 8 0 0 1 12 14a8 8 0 0 1 3.5 1.5" stroke="#757575" stroke-width="2.2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </span> |
| |
| <span class="icon" title="Battery"> |
| <svg viewBox="0 0 32 24"> |
| <rect x="1" y="5" width="26" height="14" rx="2" fill="none" stroke="#757575" stroke-width="2"/> |
| <rect x="3" y="7" width="18" height="10" rx="1.5" fill="#757575"/> |
| <rect x="27" y="9" width="4" height="6" rx="1" fill="#757575"/> |
| </svg> |
| </span> |
| </div> |
| </div> |
|
|
| |
| <div class="loading-wrap"> |
| <div class="loading">Loading..._</div> |
| </div> |
|
|
| |
| <div class="back-btn" aria-label="Back"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M15.5 4.5 7 12l8.5 7.5" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| </div> |
|
|
| |
| <div class="nav-bar"> |
| <div class="gesture-pill"></div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |