File size: 7,974 Bytes
fa881a6 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Dark Note Detail with Bottom Sheet</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
* { box-sizing: border-box; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #0E0E0E;
font-family: "Roboto", Arial, sans-serif;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 110px;
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
color: #F5F5F5;
font-weight: 500;
}
.status-left {
display: flex;
align-items: center;
gap: 16px;
font-size: 42px;
}
.status-right {
display: flex;
align-items: center;
gap: 18px;
font-size: 36px;
}
/* Header/back and actions */
.header {
position: absolute;
top: 140px;
left: 32px;
right: 32px;
display: flex;
align-items: center;
justify-content: space-between;
color: #BDBDBD;
}
.back {
display: flex;
align-items: center;
gap: 12px;
}
.header-actions {
display: flex;
align-items: center;
gap: 40px;
}
.icon {
width: 48px;
height: 48px;
opacity: 0.8;
}
/* Title section */
.content {
position: absolute;
top: 260px;
left: 56px;
right: 56px;
}
.title {
font-size: 76px;
line-height: 1.2;
font-weight: 500;
color: #EDEDED;
margin-bottom: 20px;
}
.subtitle {
font-size: 42px;
color: #9E9E9E;
margin-bottom: 50px;
}
.pill {
display: inline-flex;
align-items: center;
gap: 20px;
background: #2A2A2A;
color: #CFCFCF;
border-radius: 28px;
padding: 18px 26px;
font-size: 40px;
}
.pill .icon {
width: 44px;
height: 44px;
opacity: 1;
}
/* Bottom sheet */
.bottom-sheet {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 880px;
background: #2B2F31;
color: #EEEEEE;
padding: 40px 40px 120px;
}
.sheet-item {
display: flex;
align-items: center;
gap: 28px;
padding: 34px 0;
font-size: 44px;
color: #E0E0E0;
}
.sheet-item .icon {
width: 60px;
height: 60px;
color: #E0E0E0;
}
.gesture-bar {
position: absolute;
bottom: 26px;
left: 50%;
transform: translateX(-50%);
width: 280px;
height: 10px;
border-radius: 10px;
background: #FFFFFF;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<span>1:44</span>
<!-- tiny doc icon -->
<svg class="icon" viewBox="0 0 24 24" style="width:34px;height:34px;">
<rect x="5" y="4" width="14" height="16" fill="none" stroke="#E0E0E0" stroke-width="2"/>
<line x1="8" y1="9" x2="16" y2="9" stroke="#E0E0E0" stroke-width="2"/>
<line x1="8" y1="13" x2="16" y2="13" stroke="#E0E0E0" stroke-width="2"/>
</svg>
</div>
<div class="status-right">
<!-- WiFi -->
<svg class="icon" viewBox="0 0 24 24" style="width:40px;height:40px;">
<path d="M3 8c4.5-4 13.5-4 18 0" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M6 12c3.2-2.8 8.8-2.8 12 0" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="16" r="2" fill="#FFFFFF"/>
</svg>
<!-- Battery -->
<svg class="icon" viewBox="0 0 28 16" style="width:44px;height:26px;">
<rect x="1" y="2" width="22" height="12" rx="2" ry="2" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<rect x="3" y="4" width="18" height="8" fill="#FFFFFF"/>
<rect x="23" y="6" width="4" height="4" fill="#FFFFFF"/>
</svg>
<span>100%</span>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="back">
<svg class="icon" viewBox="0 0 24 24">
<path d="M15 5 L7 12 L15 19" stroke="#BDBDBD" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="header-actions">
<!-- Bell -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 3c-3 0-5 2-5 5v3l-1 2h12l-1-2V8c0-3-2-5-5-5z" stroke="#7A7A7A" fill="none" stroke-width="2"/>
<circle cx="12" cy="20" r="2" fill="#7A7A7A"/>
</svg>
<!-- Lock -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="5" y="10" width="14" height="10" rx="2" fill="none" stroke="#7A7A7A" stroke-width="2"/>
<path d="M8 10V7c0-2 2-3 4-3s4 1 4 3v3" stroke="#7A7A7A" stroke-width="2" fill="none"/>
</svg>
<!-- Download -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M12 5v8" stroke="#7A7A7A" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M8 10l4 4 4-4" stroke="#7A7A7A" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
<rect x="5" y="18" width="14" height="2" fill="#7A7A7A"/>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="title">Title</div>
<div class="subtitle">Meet and Greet</div>
<div class="pill">
<svg class="icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" stroke="#CFCFCF" fill="none" stroke-width="2"/>
<path d="M12 7v6l4 2" stroke="#CFCFCF" stroke-width="2" fill="none" stroke-linecap="round"/>
</svg>
<span>Aug 10, 8:00 AM</span>
</div>
</div>
<!-- Bottom sheet -->
<div class="bottom-sheet">
<div class="sheet-item">
<!-- Delete -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M5 7h14" stroke="#E0E0E0" stroke-width="2"/>
<rect x="6" y="7" width="12" height="13" fill="none" stroke="#E0E0E0" stroke-width="2"/>
<rect x="9" y="3" width="6" height="3" fill="#E0E0E0"/>
</svg>
<span>Delete</span>
</div>
<div class="sheet-item">
<!-- Copy -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="8" y="8" width="11" height="11" fill="none" stroke="#E0E0E0" stroke-width="2"/>
<rect x="5" y="5" width="11" height="11" fill="none" stroke="#E0E0E0" stroke-width="2"/>
</svg>
<span>Make a copy</span>
</div>
<div class="sheet-item">
<!-- Send/share -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M4 12l16-8-6 16-3-6-7-2z" fill="none" stroke="#E0E0E0" stroke-width="2" stroke-linejoin="round"/>
</svg>
<span>Send</span>
</div>
<div class="sheet-item">
<!-- Collaborator -->
<svg class="icon" viewBox="0 0 24 24">
<circle cx="10" cy="9" r="4" fill="none" stroke="#E0E0E0" stroke-width="2"/>
<path d="M3 20c1.5-3 5-4 7-4s5.5 1 7 4" stroke="#E0E0E0" stroke-width="2" fill="none"/>
<path d="M18 8v4M20 10h-4" stroke="#E0E0E0" stroke-width="2" stroke-linecap="round"/>
</svg>
<span>Collaborator</span>
</div>
<div class="sheet-item">
<!-- Labels -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M3 7h11l7 5-7 5H3z" fill="none" stroke="#E0E0E0" stroke-width="2"/>
<circle cx="7" cy="12" r="2" fill="#E0E0E0"/>
</svg>
<span>Labels</span>
</div>
<div class="sheet-item">
<!-- Help -->
<svg class="icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="#E0E0E0" stroke-width="2"/>
<path d="M9.5 9.5c.4-1.5 2.2-2.2 3.6-1.5 1 .5 1.4 1.2 1.4 2 0 1.2-1 1.8-2 2.3-.8.4-1.2.9-1.2 1.7" stroke="#E0E0E0" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="17.5" r="1.2" fill="#E0E0E0"/>
</svg>
<span>Help & feedback</span>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html> |