| <!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; |
| } |
| |
| |
| .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; } |
| |
| |
| .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; } |
| |
| |
| .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; } |
| |
| |
| .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; } |
| |
| |
| .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 { |
| 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"> |
|
|
| |
| <div class="statusbar"> |
| <div class="status-left"> |
| <div class="status-time">11:30</div> |
| <div class="status-text">84°</div> |
| |
| <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> |
| |
| <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"> |
| |
| <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> |
| |
| <div class="status-icon"> |
| <svg viewBox="0 0 24 24"> |
| <path d="M4 20h3m2-4h3m2-4h3m2-4h3" /> |
| </svg> |
| </div> |
| |
| <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> |
|
|
| |
| <div class="appbar"> |
| |
| <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"> |
| |
| <div class="app-icon"> |
| <svg viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="9" /> |
| <path d="M12 7v10M7 12h10" /> |
| </svg> |
| </div> |
| |
| <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> |
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <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> |
|
|
| |
| <div class="row"> |
| <div class="licon"> |
| |
| <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"> |
| |
| <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"> |
| |
| <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"> |
| |
| <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"> |
| |
| <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"> |
| |
| <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg> |
| </div> |
| </div> |
|
|
| <div class="row"> |
| <div class="licon"> |
| |
| <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"> |
| |
| <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg> |
| </div> |
| </div> |
|
|
| <div class="row"> |
| <div class="licon"> |
| |
| <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"> |
| |
| <svg viewBox="0 0 24 24"><path d="M9 5l7 7-7 7"/></svg> |
| </div> |
| </div> |
|
|
| <div class="row"> |
| <div class="licon"> |
| |
| <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"> |
| |
| <svg viewBox="0 0 24 24"><path d="M5 5l14 14M19 5L5 19"/></svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <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> |
|
|
| |
| <div class="gesture-pill"></div> |
| </div> |
| </body> |
| </html> |