File size: 10,725 Bytes
0e1717f | 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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Tasks - Add Reminder UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px; height: 2400px; position: relative; overflow: hidden;
background: #101214;
}
/* Status bar */
.statusbar {
position: absolute; top: 0; left: 0; width: 100%; height: 110px;
background: #1f4d86; color: #ffffff; display: flex; align-items: center; padding: 0 30px;
box-sizing: border-box;
}
.status-left { display: flex; align-items: center; gap: 18px; }
.status-time { font-size: 40px; font-weight: 600; letter-spacing: 0.5px; }
.status-text { font-size: 32px; opacity: 0.9; }
.status-right { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.status-icon svg { width: 44px; height: 44px; fill: none; stroke: #fff; stroke-width: 3; opacity: 0.95; }
/* App bar */
.appbar {
position: absolute; top: 110px; left: 0; width: 100%; height: 160px;
background: #1f4d86; color: #ffffff; display: flex; align-items: center; box-sizing: border-box;
padding: 0 30px;
}
.appbar .title { font-size: 56px; margin-left: 26px; font-weight: 600; }
.app-actions { margin-left: auto; display: flex; align-items: center; gap: 42px; }
.app-icon svg { width: 64px; height: 64px; stroke: #cfe0ff; fill: none; stroke-width: 4; opacity: 0.95; }
/* Notification banner */
.notif {
position: absolute; top: 270px; left: 0; width: 100%; height: 110px;
background: #1a1a1a; display: flex; align-items: center; padding: 0 30px; box-sizing: border-box;
color: #e74c3c; gap: 24px;
}
.notif .enable-btn {
margin-left: auto; background: #2e5fa8; color: #fff; border-radius: 12px; padding: 18px 28px;
font-size: 36px; box-shadow: 0 2px 0 rgba(0,0,0,0.35);
}
.notif-text { font-size: 40px; }
.notif-icon svg { width: 48px; height: 48px; stroke: #e74c3c; fill: none; stroke-width: 4; }
/* Reminder card */
.card {
position: absolute; left: 30px; right: 30px; top: 520px;
background: #3f3f3f; border-radius: 8px; box-shadow: 0 18px 38px rgba(0,0,0,0.6);
overflow: hidden;
}
.card-header {
height: 120px; background: #5fa6f6; display: flex; align-items: center; padding: 0 24px; box-sizing: border-box;
color: #ffffff;
}
.card-header .title { font-size: 48px; margin-left: 18px; }
.save-btn {
margin-left: auto; background: #ffffff; color: #3173d8; padding: 18px 30px; border-radius: 12px;
font-weight: 700; font-size: 36px; box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}
.card-header .close-icon svg { width: 44px; height: 44px; stroke: #fff; stroke-width: 6; }
.row { height: 130px; display: flex; align-items: center; box-sizing: border-box; padding: 0 24px; color: #f7f7f7; }
.row + .row { border-top: 1px solid #585858; }
.row .licon { width: 80px; display: flex; justify-content: center; align-items: center; }
.row .licon svg { width: 56px; height: 56px; stroke: #d7d7d7; fill: none; stroke-width: 4; opacity: 0.95; }
.row .label { font-size: 46px; }
.row .value { font-size: 46px; }
.row .spacer { flex: 1; }
.row .action { width: 80px; display: flex; justify-content: center; align-items: center; }
.row .action svg { width: 44px; height: 44px; stroke: #bcbcbc; fill: none; stroke-width: 5; }
/* Bottom ad banner */
.ad-banner {
position: absolute; left: 30px; right: 30px; bottom: 160px;
height: 160px; background: #eeeeee; border: 1px solid #cfcfcf; border-radius: 12px;
display: flex; align-items: center; padding: 0 24px; box-sizing: border-box; gap: 24px;
}
.ad-img {
width: 120px; height: 120px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 8px;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px; text-align: center; padding: 6px;
}
.ad-text { font-size: 40px; color: #333; }
.ad-btn {
margin-left: auto; background: #000000; color: #ffffff; border-radius: 30px; padding: 22px 40px; font-size: 40px; font-weight: 700;
}
/* Gesture pill */
.gesture-pill {
position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
width: 220px; height: 16px; border-radius: 10px; background: #d9d9d9; opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="statusbar">
<div class="status-left">
<div class="status-time">11:30</div>
<div class="status-text">84°</div>
<!-- Simple triangle to hint Play icon -->
<div class="status-icon">
<svg viewBox="0 0 24 24"><path d="M6 4 L20 12 L6 20 Z" fill="#fff" stroke="none"/></svg>
</div>
<!-- Cloud icon -->
<div class="status-icon">
<svg viewBox="0 0 24 24">
<path d="M7 15h10a4 4 0 0 0 0-8c-1.2 0-2.3.5-3.1 1.3A5 5 0 0 0 6 9a4 4 0 0 0 1 6z" fill="none" stroke="#fff" stroke-width="2"/>
</svg>
</div>
</div>
<div class="status-right">
<!-- WiFi -->
<div class="status-icon">
<svg viewBox="0 0 24 24">
<path d="M2 9c5-4 15-4 20 0" />
<path d="M5 12c3-3 11-3 14 0" />
<path d="M8 15c2-2 6-2 8 0" />
<circle cx="12" cy="18" r="1.5" fill="#fff" stroke="none"/>
</svg>
</div>
<!-- Radio/signal -->
<div class="status-icon">
<svg viewBox="0 0 24 24">
<path d="M4 20h3m2-4h3m2-4h3m2-4h3" />
</svg>
</div>
<!-- Battery -->
<div class="status-icon">
<svg viewBox="0 0 28 24">
<rect x="2" y="6" width="22" height="12" rx="2" />
<rect x="24" y="10" width="3" height="4" />
<rect x="4" y="8" width="14" height="8" fill="#fff" stroke="none"/>
</svg>
</div>
</div>
</div>
<!-- App bar -->
<div class="appbar">
<!-- Hamburger -->
<div class="app-icon">
<svg viewBox="0 0 24 24">
<path d="M3 6h18M3 12h18M3 18h18" />
</svg>
</div>
<div class="title">Tasks</div>
<div class="app-actions">
<!-- Plus in circle -->
<div class="app-icon">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" />
<path d="M12 7v10M7 12h10" />
</svg>
</div>
<!-- Check in circle -->
<div class="app-icon">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" />
<path d="M7 12l3 3 6-6" />
</svg>
</div>
<!-- Search -->
<div class="app-icon">
<svg viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6" />
<path d="M15 15l6 6" />
</svg>
</div>
</div>
</div>
<!-- Notification prompt -->
<div class="notif">
<div class="notif-icon">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10"/>
<path d="M12 7v6M12 16v1" />
</svg>
</div>
<div class="notif-text">Please allow app to send you notification</div>
<div class="enable-btn">Enable</div>
</div>
<!-- Add Reminder card -->
<div class="card">
<div class="card-header">
<div class="close-icon">
<svg viewBox="0 0 24 24"><path d="M4 4l16 16M20 4L4 20"/></svg>
</div>
<div class="title">Add Reminder</div>
<div class="save-btn">SAVE</div>
</div>
<!-- Rows -->
<div class="row">
<div class="licon">
<!-- Text bubble icon -->
<svg viewBox="0 0 24 24">
<path d="M4 4h16v12H8l-4 4z" />
</svg>
</div>
<div class="label">Remind me to..</div>
<div class="spacer"></div>
<div class="action">
<!-- Mic -->
<svg viewBox="0 0 24 24">
<rect x="9" y="5" width="6" height="8" rx="3" />
<path d="M6 11a6 6 0 0 0 12 0M12 17v3M9 20h6" />
</svg>
</div>
</div>
<div class="row">
<div class="licon">
<!-- Note icon -->
<svg viewBox="0 0 24 24">
<rect x="4" y="4" width="16" height="16" rx="2" />
<path d="M8 9h8M8 13h8M8 17h6" />
</svg>
</div>
<div class="label">Write short note</div>
<div class="spacer"></div>
<div class="action">
<!-- Mic -->
<svg viewBox="0 0 24 24">
<rect x="9" y="5" width="6" height="8" rx="3" />
<path d="M6 11a6 6 0 0 0 12 0M12 17v3M9 20h6" />
</svg>
</div>
</div>
<div class="row">
<div class="licon">
<!-- Calendar -->
<svg viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="16" rx="2" />
<path d="M3 9h18M7 3v4M17 3v4" />
</svg>
</div>
<div class="value">Tue, Sep 26, 2023</div>
<div class="spacer"></div>
<div class="action">
<!-- X -->
<svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
</div>
</div>
<div class="row">
<div class="licon">
<!-- Alarm/time -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="13" r="7" />
<path d="M12 13V9M12 13l4 3" />
<path d="M6 4l2 2M18 4l-2 2" />
</svg>
</div>
<div class="value">11:39 PM</div>
<div class="spacer"></div>
<div class="action">
<!-- X -->
<svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
</div>
</div>
<div class="row">
<div class="licon">
<!-- Reminder before (clock + arrow) -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="8" />
<path d="M12 12V8M12 12l4 2" />
<path d="M4 12a8 8 0 0 1 8-8" />
</svg>
</div>
<div class="label">Remind me before</div>
<div class="spacer"></div>
<div class="action">
<!-- Chevron right -->
<svg viewBox="0 0 24 24"><path d="M9 5l7 7-7 7"/></svg>
</div>
</div>
<div class="row">
<div class="licon">
<!-- Repeat/refresh -->
<svg viewBox="0 0 24 24">
<path d="M7 6h7l-2-2M17 18H10l2 2" />
<path d="M6 10a6 6 0 0 1 10-3M18 14a6 6 0 0 1-10 3" />
</svg>
</div>
<div class="label">Repeat every 1 hour</div>
<div class="spacer"></div>
<div class="action">
<!-- X -->
<svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg>
</div>
</div>
</div>
<!-- Bottom ad -->
<div class="ad-banner">
<div class="ad-img">[IMG: Ad Avatar]</div>
<div class="ad-text">Start chatting now!</div>
<div class="ad-btn">OPEN</div>
</div>
<!-- Gesture pill -->
<div class="gesture-pill"></div>
</div>
</body>
</html> |