File size: 4,369 Bytes
fa881a6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | <!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;
}
/* App bar */
.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 cards behind overlay */
.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 and modal */
.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);
}
/* Bottom system area mock */
.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">
<!-- App bar -->
<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>
<!-- Dimmed page content behind the modal -->
<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>
<!-- Overlay -->
<div class="overlay"></div>
<!-- Modal popup -->
<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>
<!-- System bottom bar -->
<div class="system-bar">
<div class="home-pill"></div>
</div>
</div>
</body>
</html> |