| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Globalisation Note</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #23170F; |
| font-family: Arial, Helvetica, sans-serif; |
| color: #E9D8C8; |
| } |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 110px; |
| padding: 0 36px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #E9D8C8; |
| font-size: 40px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .app-bar { |
| position: absolute; |
| top: 110px; |
| left: 0; |
| width: 1080px; |
| height: 150px; |
| display: flex; |
| align-items: center; |
| padding: 0 32px; |
| gap: 24px; |
| } |
| .title { |
| font-size: 64px; |
| font-weight: 600; |
| color: #E9D8C8; |
| flex: 1; |
| } |
| .app-actions { |
| display: flex; |
| align-items: center; |
| gap: 34px; |
| } |
| .icon-btn svg { |
| width: 60px; |
| height: 60px; |
| fill: none; |
| stroke: #DCC7B4; |
| stroke-width: 7; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| } |
| .icon-dots { |
| width: 14px; |
| height: 14px; |
| background: #DCC7B4; |
| border-radius: 50%; |
| box-shadow: 0 44px 0 0 #DCC7B4, 0 88px 0 0 #DCC7B4; |
| margin-right: 12px; |
| } |
| .content-card { |
| position: absolute; |
| left: 30px; |
| width: 1020px; |
| top: 780px; |
| background: #FFFFFF; |
| border-radius: 6px; |
| box-shadow: 0 2px 0 rgba(0,0,0,0.18); |
| padding: 140px 80px; |
| color: #111111; |
| } |
| .card-text { |
| font-size: 72px; |
| text-align: center; |
| font-weight: 500; |
| } |
| .fab { |
| position: absolute; |
| right: 68px; |
| bottom: 210px; |
| width: 160px; |
| height: 160px; |
| background: #7A4A18; |
| border-radius: 40px; |
| box-shadow: 0 8px 22px rgba(0,0,0,0.45); |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .fab svg { |
| width: 80px; |
| height: 80px; |
| fill: none; |
| stroke: #F1DDCD; |
| stroke-width: 7; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div>9:13</div> |
| <div class="status-icons"> |
| |
| <svg width="46" height="46" viewBox="0 0 24 24"> |
| <path d="M3 17l9-12 9 12H3Z" fill="#E9D8C8"></path> |
| </svg> |
| <svg width="46" height="46" viewBox="0 0 24 24"> |
| <rect x="3" y="7" width="16" height="10" rx="2" ry="2" fill="none" stroke="#E9D8C8" stroke-width="2"></rect> |
| <rect x="5" y="9" width="12" height="6" fill="#E9D8C8"></rect> |
| <rect x="20" y="10" width="2" height="4" fill="#E9D8C8"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="icon-btn"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M15 6l-6 6 6 6"></path> |
| </svg> |
| </div> |
| <div class="title">Globalisation</div> |
| <div class="app-actions"> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 5h16v11H9l-5 4V5z"></path> |
| </svg> |
| </div> |
| <div class="icon-btn"> |
| |
| <svg viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="6"></circle> |
| <path d="M20 20l-4.5-4.5"></path> |
| </svg> |
| </div> |
| <div class="icon-dots"></div> |
| </div> |
| </div> |
|
|
| |
| <div class="content-card"> |
| <div class="card-text">How to read MRZ?</div> |
| </div> |
|
|
| |
| <div class="fab"> |
| <svg viewBox="0 0 24 24"> |
| <rect x="5" y="3" width="12" height="18" rx="2"></rect> |
| <path d="M9 7h4M9 11h6M9 15h6"></path> |
| </svg> |
| </div> |
| </div> |
| </body> |
| </html> |