File size: 7,398 Bytes
98687c3 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reminder UI</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: #cfd4df;
border-radius: 0;
box-shadow: none;
color: #243245;
}
/* Top dark header */
.header {
position: relative;
width: 100%;
height: 470px;
background: #394a62;
color: #e9eef6;
box-sizing: border-box;
}
/* Status bar */
.status-bar {
height: 90px;
padding: 30px 36px;
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 500;
letter-spacing: 0.3px;
}
.status-left {
display: flex;
align-items: center;
gap: 20px;
font-size: 34px;
}
.status-right {
display: flex;
align-items: center;
gap: 26px;
}
.status-icon svg { width: 38px; height: 38px; fill: none; stroke: #ffffff; stroke-width: 2.5; }
/* App bar row */
.appbar {
padding: 12px 36px 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
}
.appbar-left {
display: flex;
align-items: center;
gap: 26px;
}
.hamburger svg, .app-icon svg { width: 56px; height: 56px; fill: none; stroke: #e9eef6; stroke-width: 5; }
.title {
font-size: 66px;
font-weight: 600;
letter-spacing: 0.5px;
margin-top: 8px;
}
.appbar-right {
display: flex;
align-items: center;
gap: 36px;
}
/* Chips */
.chips {
margin-top: 40px;
padding: 0 36px;
display: flex;
gap: 26px;
flex-wrap: nowrap;
}
.chip {
padding: 20px 34px;
border-radius: 22px;
border: 2px solid #2e3b52;
color: #dee6f2;
font-size: 36px;
letter-spacing: 0.3px;
box-shadow: inset 0 0 0 0 rgba(0,0,0,0);
}
.chip.active {
border-color: #d8d161;
background: rgba(255,255,255,0.05);
color: #fff;
}
/* List area */
.list {
position: relative;
background: #d5d9e5;
}
.item {
padding: 34px 36px;
border-top: 1px solid #b6bfcd;
border-bottom: 1px solid #b6bfcd;
background: #d7dbe6;
}
.item + .item { margin-top: 0; }
.item-title {
font-size: 54px;
font-weight: 700;
color: #202a39;
margin-bottom: 10px;
}
.item-meta {
font-size: 34px;
color: #667187;
margin-bottom: 10px;
}
.item-repeat {
font-size: 34px;
color: #667187;
}
.item-right {
position: absolute;
right: 36px;
top: 30px;
text-align: right;
}
.item-right .status {
font-size: 36px;
color: #6d7b92;
margin-bottom: 8px;
}
.star {
width: 40px;
height: 40px;
margin-left: auto;
}
.star svg { width: 40px; height: 40px; fill: #d33b32; }
/* Floating action button */
.fab {
position: absolute;
right: 70px;
bottom: 300px;
width: 140px;
height: 140px;
border-radius: 50%;
background: #3a4c66;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 86px;
line-height: 0;
box-shadow: 0 16px 24px rgba(0,0,0,0.25), 0 4px 8px rgba(0,0,0,0.18);
}
/* Bottom tabs */
.bottom-tabs {
position: absolute;
left: 0;
bottom: 144px;
width: 100%;
height: 120px;
padding: 0 60px;
display: flex;
align-items: center;
justify-content: space-between;
color: #333c4c;
}
.tab {
font-size: 42px;
letter-spacing: 0.4px;
color: #333c4c;
}
.tab.active {
font-weight: 700;
text-decoration: underline;
}
/* Gesture bar */
.gesture {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 68px;
width: 420px;
height: 14px;
background: #8a909c;
border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="header">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<span>12:36</span>
<span class="status-icon" aria-label="sun">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="4" fill="none" stroke="#ffffff" stroke-width="2.2"></circle>
<path d="M12 1v3M12 20v3M1 12h3M20 12h3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M19.8 4.2l-2.1 2.1M4.2 19.8l2.1-2.1" stroke="#ffffff" stroke-width="2" />
</svg>
</span>
</div>
<div class="status-right">
<span class="status-icon" aria-label="wifi">
<svg viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0" />
<path d="M5 12c3-3 11-3 14 0" />
<path d="M8 16c2-2 6-2 8 0" />
<circle cx="12" cy="19" r="1.6" fill="#ffffff" stroke="none"></circle>
</svg>
</span>
<span class="status-icon" aria-label="battery">
<svg viewBox="0 0 28 16">
<rect x="1" y="3" width="22" height="10" rx="2" />
<rect x="24" y="6" width="3" height="4" rx="1" />
<rect x="3" y="5" width="16" height="6" fill="#ffffff" stroke="none"></rect>
</svg>
</span>
</div>
</div>
<!-- App bar -->
<div class="appbar">
<div class="appbar-left">
<div class="hamburger" aria-label="menu">
<svg viewBox="0 0 24 24">
<path d="M3 6h18M3 12h18M3 18h18" />
</svg>
</div>
<div class="title">Reminder</div>
</div>
<div class="appbar-right">
<div class="app-icon" aria-label="search">
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="6" />
<path d="M20 20l-4-4" />
</svg>
</div>
<div class="app-icon" aria-label="filter">
<svg viewBox="0 0 24 24">
<path d="M4 6h16M8 6v2M16 12h-8M12 12v2M6 18h12M15 18v2" />
</svg>
</div>
</div>
</div>
<!-- Chips -->
<div class="chips">
<div class="chip active">All</div>
<div class="chip">Critical</div>
<div class="chip">Important</div>
<div class="chip">Favorites</div>
<div class="chip">Optional</div>
</div>
</div>
<!-- List items -->
<div class="list">
<div class="item" style="position: relative;">
<div class="item-title">Brother´s birthday</div>
<div class="item-meta">09/28/2023 8:00 PM</div>
<div class="item-repeat">Every Day</div>
<div class="item-right">
<div class="status">Today</div>
<div class="star" aria-label="favorite">
<svg viewBox="0 0 24 24">
<path d="M12 2l3.1 6.7 7 .9-5.2 4.8 1.4 7.1L12 18l-6.3 3.5 1.4-7.1L2 9.6l7-.9z"></path>
</svg>
</div>
</div>
</div>
<div class="item" style="position: relative;">
<div class="item-title">Mom's anniversary</div>
<div class="item-meta">10/5/2023 12:00 AM</div>
<div class="item-repeat">One Time</div>
<div class="item-right">
<div class="status">in 7 days</div>
</div>
</div>
</div>
<!-- Floating action button -->
<div class="fab" aria-label="add">+</div>
<!-- Bottom tabs -->
<div class="bottom-tabs">
<div class="tab active">ACTIVE</div>
<div class="tab">COMPLETED</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html> |