File size: 6,094 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 | <!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> |