File size: 5,460 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Honolulu Trip Notes</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Roboto", Arial, Helvetica, sans-serif; color: #1f2937; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
}
/* Status bar */
.status-bar {
height: 86px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #6b7280;
font-size: 30px;
}
.status-right {
display: flex;
align-items: center;
gap: 22px;
}
.dot { width: 14px; height: 14px; background: #9ca3af; border-radius: 50%; display: inline-block; }
/* Header */
.header {
padding: 8px 32px 20px 32px;
position: relative;
}
.header-row {
display: flex;
align-items: center;
justify-content: space-between;
}
.back-and-title {
display: flex;
align-items: center;
gap: 22px;
}
.icon-btn {
width: 60px; height: 60px; display: inline-flex; align-items: center; justify-content: center; color: #111827;
}
.title-group {
display: flex;
flex-direction: column;
gap: 8px;
}
.title {
font-size: 64px;
font-weight: 700;
color: #111827;
line-height: 1.1;
}
.subtitle {
font-size: 34px;
color: #6b7280;
}
.actions { display: flex; align-items: center; gap: 28px; }
/* Banner image placeholder */
.banner {
width: 100%;
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;
}
/* Content */
.content {
padding: 56px 36px 0 36px;
}
.section-title {
font-size: 58px;
font-weight: 700;
margin-bottom: 30px;
color: #111827;
}
/* Notes card */
.note-card {
border: 2px solid #d1d9de;
border-radius: 26px;
height: 560px;
background: #ffffff;
display: flex;
flex-direction: column;
overflow: hidden;
}
.note-card .note-area {
flex: 1;
background: #ffffff;
}
.note-card .divider {
height: 2px;
background: #d1d9de;
}
.note-card .note-actions {
height: 160px;
padding: 0 28px;
display: flex;
align-items: center;
justify-content: space-between;
}
.chip {
display: inline-flex;
align-items: center;
gap: 12px;
color: #0f7494;
font-size: 32px;
}
.add-btn {
background: #374151;
color: #ffffff;
font-size: 38px;
font-weight: 600;
padding: 26px 40px;
border-radius: 24px;
}
/* Bottom gesture hint */
.gesture-bar {
position: absolute;
bottom: 22px;
left: 50%;
transform: translateX(-50%);
width: 320px;
height: 10px;
background: #d1d5db;
border-radius: 6px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>6:00</div>
<div class="status-right">
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
<span class="dot"></span>
</div>
</div>
<!-- Header with back arrow, title, share and menu -->
<div class="header">
<div class="header-row">
<div class="back-and-title">
<div class="icon-btn" aria-label="Back">
<svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
<path d="M15 18l-6-6 6-6"></path>
</svg>
</div>
<div class="title-group">
<div class="title">Honolulu Trip</div>
<div class="subtitle">Wed, Jan 24 – Fri, Jan 26</div>
</div>
</div>
<div class="actions">
<div class="icon-btn" aria-label="Share">
<svg width="44" height="44" viewBox="0 0 24 24" fill="currentColor">
<path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7a3.3 3.3 0 000-1.39l7.05-4.11A3 3 0 0018 7.91a3.09 3.09 0 10-3.09-3.09 3 3 0 00.12.84L7.98 9.71a3.09 3.09 0 10.01 4.58l7.02 4.1c-.08.26-.12.53-.12.81A3.09 3.09 0 1018 16.08z"/>
</svg>
</div>
<div class="icon-btn" aria-label="More">
<svg width="44" height="44" viewBox="0 0 24 24" fill="currentColor">
<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>
</div>
<!-- Banner image placeholder -->
<div class="banner">[IMG: Clouds above sky]</div>
<!-- Content area -->
<div class="content">
<div class="section-title">Notes</div>
<div class="note-card">
<div class="note-area"></div>
<div class="divider"></div>
<div class="note-actions">
<div class="chip">
<svg width="42" height="42" viewBox="0 0 24 24" fill="#0f7494">
<path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z"/>
</svg>
</div>
<div class="add-btn">Add note</div>
</div>
</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html> |