AndroidCode / code /10118 /10118_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
6.09 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Tasks UI Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: Roboto, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #3f3f3f;
}
/* App Bar */
.appbar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 190px;
background: linear-gradient(#5fa0ff, #4a88e8);
display: flex;
align-items: center;
padding: 0 40px;
color: #fff;
}
.appbar .left {
display: flex;
align-items: center;
}
.hamburger {
width: 60px;
height: 60px;
margin-right: 28px;
}
.title {
font-size: 56px;
font-weight: 500;
letter-spacing: 0.5px;
}
.appbar .actions {
margin-left: auto;
display: flex;
align-items: center;
gap: 28px;
}
.appbar .action-icon {
width: 64px;
height: 64px;
opacity: 0.95;
}
/* Content area below app bar */
.content {
position: absolute;
left: 0;
top: 190px;
width: 100%;
bottom: 220px; /* leave room for ad */
padding: 20px 32px;
}
/* Notification permission banner */
.notice {
background: #4a4a4a;
border-bottom: 1px solid rgba(0,0,0,0.2);
height: 110px;
display: flex;
align-items: center;
padding: 0 28px;
color: #e74c3c;
}
.notice .msg {
font-size: 38px;
flex: 1;
margin-left: 18px;
}
.notice .enable-btn {
background: #4e8df5;
color: #fff;
border: none;
border-radius: 8px;
font-size: 36px;
padding: 18px 26px;
box-shadow: 0 4px 0 rgba(0,0,0,0.25);
}
/* Main center content */
.center {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 120px;
}
.img-placeholder {
width: 520px;
height: 520px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
font-size: 34px;
border-radius: 12px;
}
.headline {
margin-top: 80px;
font-size: 56px;
color: #e6e6e6;
text-align: center;
line-height: 1.25;
letter-spacing: 0.2px;
}
.primary-btn {
margin-top: 40px;
background: #4e8df5;
color: #fff;
border: none;
border-radius: 10px;
font-size: 40px;
padding: 26px 40px;
width: 420px;
box-shadow: 0 6px 0 rgba(0,0,0,0.28);
}
.secondary-btn {
margin-top: 40px;
background: #4e8df5;
color: #fff;
border: none;
border-radius: 10px;
font-size: 40px;
padding: 30px 40px;
width: 780px;
box-shadow: 0 6px 0 rgba(0,0,0,0.28);
}
.link {
margin-top: 40px;
font-size: 36px;
color: #8eb9ff;
text-decoration: underline;
}
/* Bottom ad banner */
.adbar {
position: absolute;
left: 0;
bottom: 70px;
width: 1080px;
height: 180px;
background: #ffffff;
border-top: 1px solid #d7d7d7;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.ad-content {
width: 980px;
height: 140px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
justify-content: center;
align-items: center;
color: #757575;
font-size: 32px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- App Bar -->
<div class="appbar">
<div class="left">
<!-- Hamburger icon -->
<svg class="hamburger" viewBox="0 0 40 40">
<rect x="4" y="8" width="32" height="4" fill="#ffffff"></rect>
<rect x="4" y="18" width="32" height="4" fill="#ffffff"></rect>
<rect x="4" y="28" width="32" height="4" fill="#ffffff"></rect>
</svg>
<div class="title">Tasks</div>
</div>
<div class="actions">
<!-- Plus in circle -->
<svg class="action-icon" viewBox="0 0 56 56">
<circle cx="28" cy="28" r="25" fill="none" stroke="#ffffff" stroke-width="3"></circle>
<rect x="27" y="16" width="2" height="24" fill="#ffffff"></rect>
<rect x="16" y="27" width="24" height="2" fill="#ffffff"></rect>
</svg>
<!-- Check in circle -->
<svg class="action-icon" viewBox="0 0 56 56">
<circle cx="28" cy="28" r="25" fill="none" stroke="#ffffff" stroke-width="3"></circle>
<path d="M18 30 L26 38 L40 22" stroke="#ffffff" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<!-- Magnify in circle -->
<svg class="action-icon" viewBox="0 0 56 56">
<circle cx="28" cy="28" r="25" fill="none" stroke="#ffffff" stroke-width="3"></circle>
<circle cx="24" cy="24" r="10" fill="none" stroke="#ffffff" stroke-width="3"></circle>
<line x1="31" y1="31" x2="40" y2="40" stroke="#ffffff" stroke-width="3" stroke-linecap="round"></line>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<!-- Notification permission banner -->
<div class="notice">
<svg width="54" height="54" viewBox="0 0 48 48">
<circle cx="24" cy="24" r="20" fill="#ffffff" stroke="#e74c3c" stroke-width="4"></circle>
<rect x="23" y="12" width="2" height="18" fill="#e74c3c"></rect>
<rect x="23" y="32" width="2" height="6" fill="#e74c3c"></rect>
</svg>
<div class="msg">Please allow app to send you notification</div>
<button class="enable-btn">Enable</button>
</div>
<div class="center">
<div class="img-placeholder">[IMG: Clock Illustration]</div>
<div class="headline">Anything you want me to remind you? easy.!!</div>
<button class="primary-btn">Add Reminder</button>
<button class="secondary-btn">Restore backup from Google drive</button>
<div class="link">User Guide(FAQ)</div>
</div>
</div>
<!-- Bottom ad banner -->
<div class="adbar">
<div class="ad-content">[IMG: Ad Banner - Start chatting now! OPEN]</div>
</div>
</div>
</body>
</html>