AndroidCode / code /10124 /10124_6.html
yhzheng1031's picture
Add files using upload-large-folder tool
c32f9a6 verified
raw
history blame
8.47 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Email Compose - Dark UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #121212;
color: #EAEAEA;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0; left: 0; right: 0;
height: 96px;
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
color: #FFFFFF;
font-size: 36px;
}
.status-icons {
display: flex; align-items: center; gap: 28px;
}
.status-icons svg { fill: none; stroke: #FFFFFF; stroke-width: 4; }
/* App toolbar */
.toolbar {
position: absolute;
top: 96px; left: 0; right: 0;
height: 128px;
padding: 0 20px;
border-bottom: 1px solid #2A2A2A;
display: flex;
align-items: center;
justify-content: space-between;
}
.toolbar-left, .toolbar-right {
display: flex; align-items: center; gap: 36px;
}
.icon-btn svg { width: 48px; height: 48px; stroke: #EAEAEA; fill: none; stroke-width: 4; }
.kebab svg { stroke: none; fill: #EAEAEA; }
/* Form rows */
.form {
position: absolute;
top: 224px; left: 0; right: 0;
padding: 0 32px;
}
.row {
height: 120px;
border-bottom: 1px solid #2A2A2A;
display: flex;
align-items: center;
justify-content: space-between;
}
.row .labels {
display: flex; align-items: baseline; gap: 18px;
font-size: 40px;
}
.row .label {
color: #9AA0A6;
font-size: 38px;
}
.row .value {
color: #EAEAEA;
font-size: 40px;
}
.dropdown svg { width: 36px; height: 36px; fill: none; stroke: #9AA0A6; stroke-width: 4; }
/* Suggestion item */
.suggestion {
height: 120px;
display: flex;
align-items: center;
gap: 28px;
padding-left: 32px;
color: #EAEAEA;
font-size: 40px;
}
.suggestion .avatar {
width: 72px; height: 72px;
background: #E0E0E0; border: 1px solid #BDBDBD;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 20px;
}
.suggestion .email { color: #9AA0A6; font-size: 36px; }
/* Empty compose area between form and keyboard */
.body-space {
position: absolute;
top: 584px; left: 0; right: 0;
bottom: 970px;
}
/* Keyboard */
.keyboard {
position: absolute;
left: 0; right: 0; bottom: 90px;
height: 880px;
background: #1A1A1A;
border-top: 1px solid #2A2A2A;
}
.kb-topbar {
height: 120px;
display: flex; align-items: center;
gap: 28px;
padding: 0 26px;
}
.kb-top-icon {
width: 88px; height: 88px;
background: #2A2A2A; border: 1px solid #3A3A3A;
border-radius: 18px;
display: flex; align-items: center; justify-content: center;
color: #BDBDBD; font-size: 30px;
}
.keys {
padding: 10px 26px;
}
.row-keys {
display: flex; gap: 14px; margin-bottom: 22px;
}
.key {
flex: 1;
height: 120px;
background: #2B2B2B;
border: 1px solid #3F3F3F;
border-radius: 22px;
display: flex; align-items: center; justify-content: center;
color: #E0E0E0; font-size: 44px;
}
.key.small { flex: 0 0 90px; }
.key.medium { flex: 0 0 150px; }
.key.wide { flex: 0 0 220px; }
.key.space { flex: 1 0 540px; }
.kb-bottom {
margin-top: 16px;
padding: 0 26px;
}
/* Gesture pill */
.gesture {
position: absolute; bottom: 24px; left: 50%;
transform: translateX(-50%);
width: 320px; height: 10px;
background: #FFFFFF; opacity: 0.8; border-radius: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="time">8:50</div>
<div class="status-icons">
<!-- Wi-Fi -->
<svg width="52" height="52" viewBox="0 0 24 24" aria-label="wifi">
<path d="M2 8c5.5-4.7 14.5-4.7 20 0"></path>
<path d="M5 11c4-3 10-3 14 0"></path>
<path d="M8 14c2.5-1.9 5.5-1.9 8 0"></path>
<circle cx="12" cy="18" r="1.6" fill="#FFFFFF"></circle>
</svg>
<!-- Battery -->
<svg width="64" height="52" viewBox="0 0 32 24" aria-label="battery">
<rect x="2" y="5" width="24" height="14" rx="2"></rect>
<rect x="27" y="9" width="3" height="6" rx="1"></rect>
<rect x="4" y="7" width="20" height="10" fill="#FFFFFF"></rect>
</svg>
</div>
</div>
<!-- App toolbar -->
<div class="toolbar">
<div class="toolbar-left">
<!-- Back arrow -->
<div class="icon-btn" aria-label="Back">
<svg viewBox="0 0 24 24">
<path d="M15 19l-7-7 7-7"></path>
</svg>
</div>
</div>
<div class="toolbar-right">
<!-- Attach (paperclip) -->
<div class="icon-btn" aria-label="Attach">
<svg viewBox="0 0 24 24">
<path d="M7 12l6.5-6.5a3.5 3.5 0 015 5L10 19a5 5 0 01-7-7l8-8"></path>
</svg>
</div>
<!-- Send (paper plane) -->
<div class="icon-btn" aria-label="Send">
<svg viewBox="0 0 24 24">
<path d="M3 11l18-8-8 18-2-7-7-3z"></path>
</svg>
</div>
<!-- More (kebab) -->
<div class="icon-btn kebab" aria-label="More">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2.5"></circle>
<circle cx="12" cy="12" r="2.5"></circle>
<circle cx="12" cy="19" r="2.5"></circle>
</svg>
</div>
</div>
</div>
<!-- Form area -->
<div class="form">
<div class="row">
<div class="labels">
<span class="label">From</span>
<span class="value">dbwscratch.test.id23@gmail.com</span>
</div>
</div>
<div class="row">
<div class="labels">
<span class="label">To</span>
<span class="value">giorgio.rossi196503@gmail.com</span>
</div>
<div class="dropdown" aria-label="Recipients dropdown">
<svg viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6"></path>
</svg>
</div>
</div>
<div class="suggestion">
<div class="avatar">[IMG: Contact avatar]</div>
<div>
<div>Add recipient</div>
<div class="email">giorgio.rossi196503@gmail.com</div>
</div>
</div>
</div>
<!-- Empty message body area -->
<div class="body-space"></div>
<!-- Keyboard -->
<div class="keyboard">
<div class="kb-topbar">
<div class="kb-top-icon">â–¦</div>
<div class="kb-top-icon">😊</div>
<div class="kb-top-icon">GIF</div>
<div class="kb-top-icon">âš™</div>
<div class="kb-top-icon">G↔</div>
<div class="kb-top-icon">🎨</div>
<div class="kb-top-icon">🎤</div>
</div>
<div class="keys">
<div class="row-keys">
<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="row-keys">
<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="row-keys">
<div class="key wide">⇧</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 wide">⌫</div>
</div>
<div class="kb-bottom">
<div class="row-keys">
<div class="key wide">?123</div>
<div class="key medium">@</div>
<div class="key medium">😊</div>
<div class="key space">space</div>
<div class="key medium">.</div>
<div class="key wide">
<svg width="48" height="48" viewBox="0 0 24 24" aria-label="enter">
<path d="M4 6v6a4 4 0 004 4h7"></path>
<path d="M15 13l4 3-4 3" ></path>
</svg>
</div>
</div>
</div>
</div>
</div>
<!-- Gesture pill -->
<div class="gesture"></div>
</div>
</body>
</html>