File size: 6,470 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Trip Details - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
color: #111;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 96px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #2b2b2b;
font-size: 34px;
}
.status-icons {
display: flex;
gap: 16px;
align-items: center;
}
.dot-icon {
width: 24px; height: 24px; border-radius: 50%; background: #9e9e9e;
}
.wifi {
width: 32px; height: 20px; border: 3px solid #555; border-top: none; border-radius: 0 0 8px 8px;
}
.battery {
width: 44px; height: 22px; border: 3px solid #555; border-radius: 4px; position: relative;
}
.battery:after {
content: ""; position: absolute; right: -6px; top: 6px; width: 6px; height: 10px; background: #555; border-radius: 2px;
}
/* Header area */
.header {
position: absolute;
top: 96px;
left: 0;
width: 1080px;
padding: 24px 36px 16px 36px;
background: #fff;
display: flex;
align-items: flex-start;
gap: 20px;
z-index: 2;
}
.back-btn {
width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
}
.title-wrap {
display: flex; flex-direction: column;
}
.title {
font-weight: 800;
font-size: 58px;
line-height: 1.1;
letter-spacing: 0.2px;
}
.subtitle {
margin-top: 8px;
font-size: 34px;
color: #6b6f76;
}
.actions {
margin-left: auto;
margin-top: 6px;
display: flex;
align-items: center;
gap: 8px;
}
.icon-btn {
width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
/* Banner image placeholder */
.banner {
position: absolute;
top: 232px;
left: 0;
width: 1080px;
height: 420px;
background: #E0E0E0;
border-top: 1px solid #BDBDBD;
border-bottom: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 34px;
}
/* Overflow menu card */
.menu-card {
position: absolute;
top: 320px;
right: 36px;
width: 520px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 28px rgba(0,0,0,0.18);
z-index: 5;
overflow: hidden;
}
.menu-item {
padding: 34px 36px;
font-size: 40px;
color: #262626;
border-bottom: 1px solid #f0f0f0;
}
.menu-item:last-child { border-bottom: none; }
/* Notes section */
.content {
position: absolute;
top: 700px;
left: 0;
right: 0;
padding: 54px 36px 0 36px;
}
.section-title {
font-size: 52px;
font-weight: 700;
color: #222;
margin-bottom: 28px;
}
.note-card {
width: 100%;
background: #fff;
border: 2px solid #d7e0e6;
border-radius: 24px;
overflow: hidden;
}
.note-body {
height: 420px;
background: #fafcfd;
}
.note-footer {
height: 140px;
background: #ffffff;
border-top: 2px solid #d7e0e6;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 28px 0 28px;
}
.footer-left {
display: flex;
align-items: center;
gap: 16px;
color: #0a7285;
font-size: 28px;
}
.add-btn {
padding: 20px 36px;
background: #2f3740;
color: #fff;
border-radius: 22px;
font-size: 36px;
font-weight: 700;
}
/* Bottom navigation pill */
.nav-bar {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 120px;
background: #000000;
display: flex;
align-items: center;
justify-content: center;
}
.home-pill {
width: 180px; height: 10px; background: #e5e5e5; border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>6:00</div>
<div class="status-icons">
<div class="dot-icon"></div>
<div class="dot-icon" style="background:#616161;"></div>
<div class="dot-icon" style="background:#757575;"></div>
<div class="dot-icon" style="background:#9e9e9e;"></div>
<div class="wifi"></div>
<div class="battery"></div>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="back-btn" aria-label="Back">
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M15.5 19l-7-7 7-7" stroke="#1f1f1f" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="title-wrap">
<div class="title">Honolulu Trip</div>
<div class="subtitle">Wed, Jan 24 – Fri, Jan 26</div>
</div>
<div class="actions">
<div class="icon-btn" aria-label="More">
<svg width="44" height="44" viewBox="0 0 24 24" fill="#333">
<circle cx="12" cy="5" r="2"></circle>
<circle cx="12" cy="12" r="2"></circle>
<circle cx="12" cy="19" r="2"></circle>
</svg>
</div>
</div>
</div>
<!-- Banner placeholder -->
<div class="banner">[IMG: Honolulu beach skyline]</div>
<!-- Overflow menu -->
<div class="menu-card">
<div class="menu-item">Disable notifications</div>
<div class="menu-item">Edit Trip</div>
<div class="menu-item">Add event</div>
<div class="menu-item">Delete Trip</div>
<div class="menu-item">Merge Trip</div>
</div>
<!-- Notes section -->
<div class="content">
<div class="section-title">Notes</div>
<div class="note-card">
<div class="note-body"></div>
<div class="note-footer">
<div class="footer-left">
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M12 2C8.7 2 6 4.7 6 8c0 4.2 6 12 6 12s6-7.8 6-12c0-3.3-2.7-6-6-6zm0 8.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z" fill="#0a7285"></path>
</svg>
</div>
<div class="add-btn">Add note</div>
</div>
</div>
</div>
<!-- Bottom navigation -->
<div class="nav-bar">
<div class="home-pill"></div>
</div>
</div>
</body>
</html> |