AndroidCode / code /10040 /10040_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!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 &amp; feedback</span>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html>