AndroidCode / code /10124 /10124_5.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
8.33 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Email Compose - Dark</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<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: #121212; color: #E9E9E9;
}
/* Status bar */
.statusbar {
height: 96px; padding: 0 32px;
display: flex; align-items: center; justify-content: space-between;
color: #E9E9E9; font-weight: 500; font-size: 36px;
}
.status-icons { display: flex; align-items: center; gap: 24px; }
.status-icons svg { fill: none; stroke: #E9E9E9; stroke-width: 3; }
/* App bar */
.appbar {
height: 140px; padding: 0 24px;
display: flex; align-items: center; justify-content: space-between;
border-bottom: 1px solid #1F1F1F;
}
.app-left { display: flex; align-items: center; gap: 24px; }
.app-right { display: flex; align-items: center; gap: 36px; }
.icon-btn svg { width: 48px; height: 48px; stroke: #E9E9E9; fill: none; stroke-width: 3; }
/* Fields */
.content { padding: 24px 32px 0 32px; }
.field {
display: flex; align-items: center;
border-bottom: 1px solid #1E1E1E;
padding: 28px 0;
font-size: 34px;
}
.label {
width: 140px; color: #B4B4B4;
}
.value { flex: 1; color: #E9E9E9; }
.placeholder { color: #9AA0A6; }
.dropdown { width: 44px; height: 44px; margin-left: 8px; }
/* Compose area */
.compose {
padding: 32px 0;
font-size: 38px; color: #B4B4B4;
}
/* Attachment chip */
.attachment {
margin-top: 20px;
width: 940px; height: 132px;
background: #2A2F33; border-radius: 18px;
display: flex; align-items: center; gap: 28px;
padding: 0 24px; border: 1px solid #3A4044;
color: #E9E9E9;
}
.att-icon {
width: 72px; height: 72px; border-radius: 12px;
background: #E74D3C; display: flex; align-items: center; justify-content: center;
}
.att-text { flex: 1; }
.att-title { font-size: 34px; }
.att-sub { font-size: 28px; color: #B4B4B4; margin-top: 6px; }
.att-close { width: 48px; height: 48px; }
/* Keyboard */
.keyboard {
position: absolute; bottom: 72px; left: 0;
width: 100%; height: 900px;
background: #1A1A1A; border-top: 1px solid #222;
}
.kb-topbar {
height: 96px; padding: 0 24px;
display: flex; align-items: center; gap: 28px; color: #9AA0A6;
}
.kb-rows { padding: 16px 36px 24px 36px; }
.kb-row { display: flex; justify-content: center; gap: 8px; margin-bottom: 22px; }
.key {
width: 92px; height: 116px; border-radius: 16px;
background: #2C2C2C; color: #E9E9E9;
display: flex; align-items: center; justify-content: center;
font-size: 42px; font-weight: 500;
}
.key.small { width: 140px; }
.key.wide { width: 520px; }
.key.blue { background: #A6C8FF; color: #121212; }
.key.icon { font-size: 38px; color: #CFCFCF; }
/* Home indicator */
.home-indicator {
position: absolute; bottom: 16px; left: 50%;
transform: translateX(-50%);
width: 300px; height: 12px; border-radius: 8px; background: #DADADA; opacity: 0.6;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="statusbar">
<div>8:49</div>
<div class="status-icons">
<!-- Wi-Fi -->
<svg width="44" height="44" viewBox="0 0 44 44">
<path d="M5 16c7-6 27-6 34 0"/>
<path d="M10 22c5-4 19-4 24 0"/>
<path d="M16 28c3-2 9-2 12 0"/>
<circle cx="22" cy="33" r="2.8" fill="#E9E9E9" stroke="none"/>
</svg>
<!-- Battery -->
<svg width="60" height="44" viewBox="0 0 60 44">
<rect x="6" y="10" width="40" height="24" rx="4" />
<rect x="48" y="16" width="6" height="12" rx="2" />
<rect x="10" y="14" width="30" height="16" rx="2" fill="#E9E9E9" stroke="none"/>
</svg>
</div>
</div>
<!-- App bar -->
<div class="appbar">
<div class="app-left">
<!-- Back -->
<div class="icon-btn">
<svg viewBox="0 0 48 48">
<path d="M30 10 L16 24 L30 38" />
</svg>
</div>
</div>
<div class="app-right">
<!-- Attach (paperclip) -->
<div class="icon-btn">
<svg viewBox="0 0 48 48">
<path d="M18 16c0-4 5-6 8-3l12 12c3 3 1 8-3 8-2 0-3-1-4-2L19 19c-2-2-5-1-5 2 0 2 1 3 2 4l10 10" />
</svg>
</div>
<!-- Send -->
<div class="icon-btn">
<svg viewBox="0 0 48 48">
<path d="M8 24 L40 10 L32 24 L40 38 Z" />
</svg>
</div>
<!-- More (vertical dots) -->
<div class="icon-btn">
<svg viewBox="0 0 48 48">
<circle cx="24" cy="12" r="3" fill="#E9E9E9" stroke="none"></circle>
<circle cx="24" cy="24" r="3" fill="#E9E9E9" stroke="none"></circle>
<circle cx="24" cy="36" r="3" fill="#E9E9E9" stroke="none"></circle>
</svg>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="field">
<div class="label">From</div>
<div class="value">dbwscratch.test.id23@gmail.com</div>
</div>
<div class="field">
<div class="label">To</div>
<div class="value placeholder"> </div>
<!-- dropdown chevron -->
<svg class="dropdown" viewBox="0 0 24 24">
<path d="M6 9 L12 15 L18 9" stroke="#E9E9E9" stroke-width="2.5" fill="none" />
</svg>
</div>
<div class="field">
<div class="label">Subject</div>
<div class="value placeholder"> </div>
</div>
<div class="compose">Compose email</div>
<!-- Attachment chip -->
<div class="attachment">
<div class="att-icon">
<svg width="44" height="44" viewBox="0 0 44 44">
<path d="M14 14 v12 a8 8 0 0 0 16 0 v-12" stroke="#121212" stroke-width="3.5" fill="none" />
<rect x="18" y="10" width="8" height="6" rx="2" fill="#121212" stroke="none"/>
</svg>
</div>
<div class="att-text">
<div class="att-title">Birthday Song .m4a</div>
<div class="att-sub">346 KB</div>
</div>
<svg class="att-close" viewBox="0 0 48 48">
<path d="M12 12 L36 36 M36 12 L12 36" stroke="#CFCFCF" stroke-width="3.5" />
</svg>
</div>
</div>
<!-- Keyboard -->
<div class="keyboard">
<div class="kb-topbar">
<div class="key icon" style="width:72px;height:72px;border-radius:12px;">⌨️</div>
<div class="key icon" style="width:72px;height:72px;border-radius:12px;">🙂</div>
<div style="color:#6F6F6F; font-size:34px;">GIF</div>
<div class="key icon" style="width:72px;height:72px;border-radius:12px;">⚙️</div>
<div class="key icon" style="width:72px;height:72px;border-radius:12px;">G↔︎</div>
<div class="key icon" style="width:72px;height:72px;border-radius:12px;">🎨</div>
<div class="key icon" style="margin-left:auto;width:72px;height:72px;border-radius:12px;">🎤</div>
</div>
<div class="kb-rows">
<div class="kb-row">
<div class="key">q</div><div class="key">w</div><div class="key">e</div><div class="key">r</div><div class="key">t</div><div class="key">y</div><div class="key">u</div><div class="key">i</div><div class="key">o</div><div class="key">p</div>
</div>
<div class="kb-row">
<div class="key">a</div><div class="key">s</div><div class="key">d</div><div class="key">f</div><div class="key">g</div><div class="key">h</div><div class="key">j</div><div class="key">k</div><div class="key">l</div>
</div>
<div class="kb-row">
<div class="key small"></div>
<div class="key">z</div><div class="key">x</div><div class="key">c</div><div class="key">v</div><div class="key">b</div><div class="key">n</div><div class="key">m</div>
<div class="key small"></div>
</div>
<div class="kb-row" style="align-items:center;">
<div class="key small">?123</div>
<div class="key small">@</div>
<div class="key small">🙂</div>
<div class="key wide"></div>
<div class="key small">.</div>
<div class="key small blue"></div>
</div>
</div>
</div>
<!-- Home indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html>