AndroidCode / code /10045 /10045_2.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">
<title>Note Detail UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #000000;
font-family: "Roboto", Arial, Helvetica, sans-serif;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
height: 90px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
font-size: 32px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 24px;
opacity: 0.9;
}
.status-icon svg { width: 40px; height: 40px; }
/* App bar */
.app-bar {
height: 120px;
padding: 0 24px;
display: flex;
align-items: center;
gap: 24px;
}
.app-title {
font-size: 56px;
font-weight: 700;
display: flex;
align-items: center;
gap: 12px;
}
.app-title .chevron {
margin-left: 8px;
opacity: 0.9;
}
.app-actions {
margin-left: auto;
}
/* Reminder row */
.reminder-row {
margin: 40px 24px 0 24px;
display: flex;
align-items: center;
gap: 24px;
}
.checkbox {
width: 48px;
height: 48px;
border: 3px solid #8E8E8E;
border-radius: 6px;
opacity: 0.8;
}
.reminder-text {
color: #FF8F00;
font-size: 34px;
font-weight: 700;
}
.flag {
margin-left: auto;
}
/* Content */
.note-title {
margin: 40px 24px 0 24px;
font-size: 72px;
font-weight: 800;
}
.note-body {
margin: 28px 24px 0 24px;
font-size: 40px;
color: #CFCFCF;
}
/* Bottom toolbar */
.bottom-bar {
position: absolute;
bottom: 110px;
left: 24px;
right: 24px;
height: 120px;
display: flex;
align-items: center;
gap: 72px;
}
.tool-icon svg {
width: 64px;
height: 64px;
stroke: #BDBDBD;
fill: none;
opacity: 0.85;
}
/* Gesture pill */
.gesture-pill {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 360px;
height: 16px;
background: #E0E0E0;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">2:53</div>
<div class="status-right">
<div class="status-icon">
<!-- Signal bars -->
<svg viewBox="0 0 48 48">
<rect x="4" y="26" width="6" height="16" fill="#FFFFFF"/>
<rect x="14" y="20" width="6" height="22" fill="#FFFFFF"/>
<rect x="24" y="14" width="6" height="28" fill="#FFFFFF"/>
<rect x="34" y="8" width="6" height="34" fill="#FFFFFF"/>
</svg>
</div>
<div class="status-icon">
<!-- Wi-Fi -->
<svg viewBox="0 0 48 48">
<path d="M6 18 C16 10,32 10,42 18" stroke="#FFFFFF" stroke-width="4" fill="none"/>
<path d="M12 24 C18 18,30 18,36 24" stroke="#FFFFFF" stroke-width="4" fill="none"/>
<circle cx="24" cy="30" r="4" fill="#FFFFFF"/>
</svg>
</div>
<div class="status-icon">
<!-- Battery -->
<svg viewBox="0 0 48 48">
<rect x="6" y="12" width="34" height="24" rx="4" ry="4" stroke="#FFFFFF" stroke-width="3" fill="none"/>
<rect x="42" y="18" width="4" height="12" fill="#FFFFFF"/>
<rect x="10" y="16" width="26" height="16" fill="#FFFFFF"/>
</svg>
</div>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<!-- Back arrow -->
<svg viewBox="0 0 48 48" width="56" height="56">
<path d="M30 12 L14 24 L30 36" stroke="#FFFFFF" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<div class="app-title">
<span>👋</span>
<span>Welcome</span>
<svg class="chevron" viewBox="0 0 48 48" width="36" height="36">
<path d="M12 18 L24 30 L36 18" stroke="#FFFFFF" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="app-actions">
<!-- Kebab menu -->
<svg viewBox="0 0 48 48" width="48" height="48">
<circle cx="24" cy="12" r="4" fill="#FFFFFF"/>
<circle cx="24" cy="24" r="4" fill="#FFFFFF"/>
<circle cx="24" cy="36" r="4" fill="#FFFFFF"/>
</svg>
</div>
</div>
<!-- Reminder row -->
<div class="reminder-row">
<div class="checkbox"></div>
<div class="reminder-icon">
<!-- Alarm/clock -->
<svg viewBox="0 0 48 48" width="48" height="48">
<circle cx="24" cy="26" r="14" stroke="#FF8F00" stroke-width="4" fill="none"/>
<path d="M24 26 L24 18 M24 26 L32 26" stroke="#FF8F00" stroke-width="4" stroke-linecap="round"/>
<path d="M10 10 L18 14 M38 10 L30 14" stroke="#FF8F00" stroke-width="4" fill="none" stroke-linecap="round"/>
</svg>
</div>
<div class="reminder-text">2 days later, Aug 13, 06:00PM</div>
<div class="flag">
<!-- Flag icon -->
<svg viewBox="0 0 48 48" width="48" height="48">
<path d="M10 8 L10 40" stroke="#FFFFFF" stroke-width="4"/>
<path d="M12 10 L36 14 L12 20 Z" fill="#FFFFFF"/>
</svg>
</div>
</div>
<!-- Note content -->
<div class="note-title">Rent is due</div>
<div class="note-body">its a new month</div>
<!-- Bottom toolbar -->
<div class="bottom-bar">
<div class="tool-icon">
<!-- Tag icon -->
<svg viewBox="0 0 64 64">
<path d="M10 34 L34 10 L54 30 L30 54 Z" stroke="#BDBDBD" stroke-width="4" fill="none"/>
<circle cx="40" cy="24" r="4" fill="#BDBDBD"/>
</svg>
</div>
<div class="tool-icon">
<!-- List icon -->
<svg viewBox="0 0 64 64">
<circle cx="12" cy="16" r="4" fill="#BDBDBD"/>
<circle cx="12" cy="32" r="4" fill="#BDBDBD"/>
<circle cx="12" cy="48" r="4" fill="#BDBDBD"/>
<path d="M22 16 H54 M22 32 H54 M22 48 H54" stroke="#BDBDBD" stroke-width="4"/>
</svg>
</div>
<div class="tool-icon">
<!-- Image icon -->
<svg viewBox="0 0 64 64">
<rect x="8" y="10" width="48" height="44" rx="6" ry="6" stroke="#BDBDBD" stroke-width="4" fill="none"/>
<circle cx="22" cy="24" r="5" stroke="#BDBDBD" stroke-width="4" fill="none"/>
<path d="M16 44 L30 34 L40 40 L52 30" stroke="#BDBDBD" stroke-width="4" fill="none"/>
</svg>
</div>
</div>
<!-- Gesture pill -->
<div class="gesture-pill"></div>
</div>
</body>
</html>