| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Ticket options - Modal</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; } |
| #render-target { |
| position: relative; |
| overflow: hidden; |
| width: 1080px; |
| height: 2400px; |
| background: #ffffff; |
| } |
| |
| |
| .appbar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 240px; |
| background: linear-gradient(180deg, #e26e1f 0%, #e97a2b 100%); |
| color: #fff; |
| } |
| .appbar .title { |
| position: absolute; |
| left: 0; |
| right: 0; |
| top: 110px; |
| text-align: center; |
| font-weight: 700; |
| font-size: 54px; |
| letter-spacing: 0.3px; |
| opacity: 0.95; |
| } |
| .back-btn { |
| position: absolute; |
| top: 110px; |
| left: 30px; |
| width: 64px; |
| height: 64px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .back-btn svg { width: 42px; height: 42px; fill: none; stroke: #ffffff; stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; } |
| |
| |
| .content { |
| position: absolute; |
| top: 260px; |
| left: 0; |
| right: 0; |
| padding: 36px 48px 0 48px; |
| } |
| .card { |
| background: #f2f2f2; |
| border-radius: 28px; |
| padding: 70px 60px; |
| margin-bottom: 40px; |
| box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03); |
| } |
| .card h3 { |
| margin: 40px 0 18px 0; |
| color: #6d6d6d; |
| font-size: 42px; |
| font-weight: 600; |
| } |
| .card p { |
| margin: 0; |
| color: #204a9a; |
| font-size: 40px; |
| font-weight: 700; |
| } |
| |
| |
| .overlay { |
| position: absolute; |
| inset: 0; |
| background: rgba(0,0,0,0.55); |
| } |
| |
| .modal { |
| position: absolute; |
| left: 60px; |
| right: 60px; |
| top: 560px; |
| background: #ffffff; |
| border-radius: 40px; |
| padding: 54px 60px 56px 60px; |
| box-shadow: 0 20px 60px rgba(0,0,0,0.25); |
| } |
| .illustration { |
| width: 100%; |
| height: 360px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 18px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #757575; |
| font-size: 36px; |
| margin-bottom: 20px; |
| } |
| .modal h1 { |
| margin: 30px 24px 16px 24px; |
| font-size: 58px; |
| line-height: 1.2; |
| text-align: center; |
| color: #222222; |
| font-weight: 800; |
| } |
| .modal .subtitle { |
| margin: 4px 40px 40px 40px; |
| font-size: 38px; |
| line-height: 1.45; |
| text-align: center; |
| color: #616161; |
| font-weight: 500; |
| } |
| .cta { |
| width: 100%; |
| background: #ea6b2f; |
| color: #ffffff; |
| text-align: center; |
| border: none; |
| font-size: 46px; |
| font-weight: 800; |
| padding: 34px 20px; |
| border-radius: 28px; |
| cursor: default; |
| box-shadow: inset 0 -2px 0 rgba(0,0,0,0.06); |
| } |
| |
| |
| .system-bar { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 1080px; |
| height: 120px; |
| background: #000; |
| } |
| .home-pill { |
| position: absolute; |
| bottom: 38px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 220px; |
| height: 10px; |
| background: #e6e6e6; |
| border-radius: 8px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="appbar"> |
| <div class="back-btn" aria-hidden="true"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M14 5 L7 12 L14 19"></path> |
| </svg> |
| </div> |
| <div class="title">Ticket options</div> |
| </div> |
|
|
| |
| <div class="content"> |
| <div class="card"> |
| <div style="width:100%;height:160px;background:#e9e9e9;border-radius:20px;margin-bottom:26px;"></div> |
| <h3>Something went wrong. Try refreshing?</h3> |
| <p>Refresh</p> |
| </div> |
| <div class="card" style="height:520px;"></div> |
| </div> |
|
|
| |
| <div class="overlay"></div> |
|
|
| |
| <div class="modal"> |
| <div class="illustration">[IMG: Travel illustration]</div> |
| <h1>Still want to make a booking?</h1> |
| <div class="subtitle">You'll need to refresh to see the latest prices</div> |
| <button class="cta">Refresh</button> |
| </div> |
|
|
| |
| <div class="system-bar"> |
| <div class="home-pill"></div> |
| </div> |
| </div> |
| </body> |
| </html> |