AndroidCode / code /10118 /10118_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
10.2 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Tasks - Add Reminder</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Roboto, Arial, sans-serif;
color: #fff;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #121212;
}
/* Top App Bar */
.appbar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 180px;
background: #1f4e86;
display: flex;
align-items: center;
padding: 0 36px;
box-sizing: border-box;
}
.appbar .left {
display: flex;
align-items: center;
gap: 28px;
}
.appbar .title {
font-size: 50px;
font-weight: 500;
letter-spacing: 0.5px;
}
.appbar .right {
margin-left: auto;
display: flex;
align-items: center;
gap: 46px;
}
.icon-btn {
width: 74px;
height: 74px;
display: inline-flex;
align-items: center;
justify-content: center;
opacity: 0.95;
}
.icon-btn svg {
width: 64px;
height: 64px;
fill: none;
stroke: #cfe3ff;
stroke-width: 6;
}
/* Warning banner */
.warning {
position: absolute;
top: 180px;
left: 0;
width: 1080px;
height: 128px;
background: #1c1c1c;
display: flex;
align-items: center;
padding: 0 36px;
box-sizing: border-box;
gap: 20px;
}
.warning .msg {
color: #e15b5b;
font-size: 38px;
flex: 1;
display: flex;
align-items: center;
gap: 18px;
}
.warning .enable-btn {
background: #3d6fff;
color: #fff;
font-weight: 600;
font-size: 34px;
padding: 18px 34px;
border-radius: 10px;
box-shadow: 0 2px 0 rgba(0,0,0,0.3) inset;
}
.warning .enable-btn:hover { filter: brightness(1.05); }
.warning .msg svg {
width: 42px;
height: 42px;
stroke: #e15b5b;
fill: none;
stroke-width: 8;
}
/* Modal Card */
.card {
position: absolute;
left: 40px;
top: 520px;
width: 1000px;
background: #2f2f2f;
border-radius: 12px;
box-shadow: 0 24px 48px rgba(0,0,0,0.6);
overflow: hidden;
}
.card-header {
height: 120px;
background: #59a1ff;
display: flex;
align-items: center;
padding: 0 24px;
box-sizing: border-box;
}
.card-header .close {
width: 72px;
height: 72px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 18px;
}
.card-header .title {
font-size: 46px;
font-weight: 500;
color: #ffffff;
flex: 1;
}
.card-header .save {
background: #ffffff;
color: #3a7be0;
font-weight: 700;
font-size: 34px;
padding: 18px 32px;
border-radius: 12px;
}
.row {
display: flex;
align-items: center;
padding: 32px 24px;
box-sizing: border-box;
border-top: 1px solid rgba(255,255,255,0.08);
color: #e6e6e6;
}
.row:first-of-type {
border-top: none;
}
.row .left-icon {
width: 88px;
height: 88px;
display: inline-flex;
align-items: center;
justify-content: center;
margin-right: 24px;
opacity: 0.9;
}
.row .left-icon svg {
width: 70px;
height: 70px;
stroke: #cccccc;
fill: none;
stroke-width: 6;
}
.row .label {
font-size: 44px;
line-height: 1.2;
flex: 1;
}
.row .right-actions {
display: flex;
align-items: center;
gap: 30px;
}
.row .action-icon {
width: 70px;
height: 70px;
display: inline-flex;
align-items: center;
justify-content: center;
opacity: 0.8;
}
.row .action-icon svg {
width: 56px;
height: 56px;
stroke: #bdbdbd;
fill: none;
stroke-width: 6;
}
.row .link {
color: #5d9cfb;
font-size: 36px;
}
/* Bottom ad banner */
.ad-bar {
position: absolute;
left: 0;
bottom: 140px;
width: 1080px;
background: #e9e9e9;
height: 220px;
display: flex;
align-items: center;
padding: 0 40px;
box-sizing: border-box;
gap: 24px;
border-top: 1px solid #d0d0d0;
}
.ad-img {
width: 180px;
height: 180px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
border-radius: 8px;
}
.ad-text {
font-size: 40px;
color: #333;
flex: 1;
}
.ad-open {
background: #111;
color: #fff;
font-weight: 700;
font-size: 40px;
padding: 24px 44px;
border-radius: 60px;
}
/* Gesture pill */
.gesture {
position: absolute;
bottom: 40px;
left: 50%;
width: 260px;
height: 18px;
background: #f3f3f3;
transform: translateX(-50%);
border-radius: 14px;
opacity: 0.85;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top App Bar -->
<div class="appbar">
<div class="left">
<div class="icon-btn" aria-label="Menu">
<svg viewBox="0 0 24 24">
<path d="M3 6h18M3 12h18M3 18h18" />
</svg>
</div>
<div class="title">Tasks</div>
</div>
<div class="right">
<!-- plus alarm -->
<div class="icon-btn" aria-label="Add reminder">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="8"></circle>
<path d="M12 9v6M9 12h6"></path>
</svg>
</div>
<!-- check -->
<div class="icon-btn" aria-label="Mark done">
<svg viewBox="0 0 24 24">
<path d="M5 12l5 5L19 8"></path>
</svg>
</div>
<!-- search -->
<div class="icon-btn" aria-label="Search">
<svg viewBox="0 0 24 24">
<circle cx="10" cy="10" r="6"></circle>
<path d="M14.5 14.5L20 20"></path>
</svg>
</div>
</div>
</div>
<!-- Warning Banner -->
<div class="warning">
<div class="msg">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9"></circle>
<path d="M12 7v6M12 16h.01"></path>
</svg>
<span>Please allow app to send you notification</span>
</div>
<div class="enable-btn">Enable</div>
</div>
<!-- Reminder Card -->
<div class="card">
<div class="card-header">
<div class="close" aria-label="Close">
<svg viewBox="0 0 24 24">
<path d="M5 5l14 14M19 5L5 19"></path>
</svg>
</div>
<div class="title">Add Reminder</div>
<div class="save">SAVE</div>
</div>
<!-- Rows -->
<div class="row">
<div class="left-icon">
<!-- microphone -->
<svg viewBox="0 0 24 24">
<rect x="9" y="5" width="6" height="10" rx="3"></rect>
<path d="M6 11a6 6 0 0012 0M12 17v3M8 20h8"></path>
</svg>
</div>
<div class="label">Remind me to..</div>
<div class="right-actions">
<div class="action-icon" aria-label="Voice">
<svg viewBox="0 0 24 24">
<rect x="9" y="5" width="6" height="10" rx="3"></rect>
<path d="M6 11a6 6 0 0012 0M12 17v3M8 20h8"></path>
</svg>
</div>
</div>
</div>
<div class="row">
<div class="left-icon">
<!-- note icon -->
<svg viewBox="0 0 24 24">
<path d="M5 4h10l4 4v12H5z"></path>
<path d="M15 4v4h4"></path>
</svg>
</div>
<div class="label">Write short note</div>
<div class="right-actions">
<div class="action-icon" aria-label="Voice">
<svg viewBox="0 0 24 24">
<rect x="9" y="5" width="6" height="10" rx="3"></rect>
<path d="M6 11a6 6 0 0012 0M12 17v3M8 20h8"></path>
</svg>
</div>
</div>
</div>
<div class="row">
<div class="left-icon">
<!-- calendar -->
<svg viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="16" rx="2"></rect>
<path d="M7 3v4M17 3v4M3 10h18"></path>
</svg>
</div>
<div class="label">Tue, Sep 26, 2023</div>
<div class="right-actions">
<div class="action-icon" aria-label="Clear date">
<svg viewBox="0 0 24 24">
<path d="M5 5l14 14M19 5L5 19"></path>
</svg>
</div>
</div>
</div>
<div class="row">
<div class="left-icon">
<!-- clock -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9"></circle>
<path d="M12 7v6l4 2"></path>
</svg>
</div>
<div class="label">11:39 PM</div>
<div class="right-actions">
<div class="link">+Add more time</div>
<div class="action-icon" aria-label="Clear time">
<svg viewBox="0 0 24 24">
<path d="M5 5l14 14M19 5L5 19"></path>
</svg>
</div>
</div>
</div>
<div class="row">
<div class="left-icon">
<!-- stopwatch -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="13" r="8"></circle>
<path d="M9 3h6M12 6v2M12 13l3-2"></path>
</svg>
</div>
<div class="label">Remind me before</div>
<div class="right-actions">
<div class="action-icon" aria-label="Next">
<svg viewBox="0 0 24 24">
<path d="M9 6l6 6-6 6"></path>
</svg>
</div>
</div>
</div>
<div class="row">
<div class="left-icon">
<!-- repeat -->
<svg viewBox="0 0 24 24">
<path d="M4 7h9l-2-2M20 17h-9l2 2"></path>
<path d="M4 7a5 5 0 015-5h4M20 17a5 5 0 01-5 5h-4"></path>
</svg>
</div>
<div class="label">Repeat: No repeat</div>
<div class="right-actions">
<div class="action-icon" aria-label="Next">
<svg viewBox="0 0 24 24">
<path d="M9 6l6 6-6 6"></path>
</svg>
</div>
</div>
</div>
</div>
<!-- Bottom Ad Banner -->
<div class="ad-bar">
<div class="ad-img">[IMG: Ad Image]</div>
<div class="ad-text">Start chatting now!</div>
<div class="ad-open">OPEN</div>
</div>
<!-- Gesture pill -->
<div class="gesture"></div>
</div>
</body>
</html>