AndroidCode / code /1014 /1014_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
5.44 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Share UI Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #22150B; /* dark warm brown */
color: #D9C7B7; /* warm beige text */
font-family: Arial, Helvetica, sans-serif;
}
.status-bar {
height: 110px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #F2E9E2;
font-size: 38px;
letter-spacing: 0.5px;
opacity: 0.95;
}
.status-right {
display: flex;
align-items: center;
gap: 26px;
}
.app-bar {
height: 160px;
padding: 0 36px;
display: flex;
align-items: center;
gap: 26px;
border-bottom: 1px solid #4A3A2E;
}
.app-title {
font-size: 72px;
font-weight: 600;
margin-right: auto;
}
.top-actions {
display: flex;
align-items: center;
gap: 40px;
}
.icon-btn svg { width: 60px; height: 60px; fill: none; stroke: #D9C7B7; stroke-width: 4; }
.icon-fill svg { width: 60px; height: 60px; fill: #D9C7B7; stroke: none; }
.add-row {
padding: 28px 36px;
display: flex;
align-items: center;
gap: 26px;
font-size: 46px;
color: #D9C7B7;
border-bottom: 1px solid #4A3A2E;
}
.add-icon svg { width: 56px; height: 56px; stroke: #D9C7B7; stroke-width: 4; fill: none; }
.caret {
width: 2px;
height: 48px;
background: #E59A52;
margin-right: 10px;
}
.spacer {
height: 1680px; /* large empty area to match screenshot */
}
.bottom-section {
position: absolute;
left: 36px;
right: 36px;
bottom: 140px;
}
.manage-label {
font-size: 42px;
color: #D9C7B7;
margin-bottom: 26px;
}
.avatars {
display: flex;
align-items: center;
gap: 28px;
}
.chip {
width: 110px;
height: 110px;
border-radius: 55px;
display: flex;
align-items: center;
justify-content: center;
color: #FFFFFF;
font-size: 50px;
font-weight: 700;
}
.chip.magenta { background: #D11E6D; }
.divider {
width: 2px;
height: 90px;
background: #7A675A;
margin: 0 4px;
}
.chip.teal { background: #1AAFA8; font-weight: 600; }
.chip svg { width: 60px; height: 60px; fill: none; stroke: #FFFFFF; stroke-width: 4; }
.gesture-bar {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 420px;
height: 12px;
background: #EFEFEF;
border-radius: 6px;
opacity: 0.8;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">9:13</div>
<div class="status-right">
<!-- small triangle/caution outline -->
<svg viewBox="0 0 24 24" width="40" height="40">
<path d="M12 3 L22 20 H2 Z" fill="none" stroke="#F2E9E2" stroke-width="2"></path>
</svg>
<!-- Wi-Fi icon -->
<svg viewBox="0 0 24 24" width="40" height="40">
<path d="M2 9c5-5 15-5 20 0" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<path d="M5 12c4-4 10-4 14 0" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<path d="M8 15c3-3 5-3 8 0" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<circle cx="12" cy="18" r="1.5" fill="#FFFFFF"/>
</svg>
<!-- Battery icon -->
<svg viewBox="0 0 28 24" width="46" height="40">
<rect x="2" y="6" width="20" height="12" rx="2" ry="2" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<rect x="4" y="8" width="14" height="8" fill="#FFFFFF"/>
<rect x="22" y="9" width="4" height="6" fill="#FFFFFF"/>
</svg>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="icon-btn">
<!-- Close (X) -->
<svg viewBox="0 0 24 24">
<path d="M6 6 L18 18 M6 18 L18 6"></path>
</svg>
</div>
<div class="app-title">Share</div>
<div class="top-actions">
<!-- Send (paper plane) -->
<div class="icon-fill">
<svg viewBox="0 0 24 24">
<path d="M3 11 L20 4 L14 20 L11 13 Z"></path>
</svg>
</div>
<!-- More (vertical dots) -->
<div class="icon-fill">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="5" r="2.4"></circle>
<circle cx="12" cy="12" r="2.4"></circle>
<circle cx="12" cy="19" r="2.4"></circle>
</svg>
</div>
</div>
</div>
<!-- Add people row -->
<div class="add-row">
<div class="add-icon">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="8" r="3.5"></circle>
<path d="M5 20c0-4 14-4 14 0" />
<path d="M4 8h4M6 6v4" />
</svg>
</div>
<div class="caret"></div>
<div>Add people or groups</div>
</div>
<div class="spacer"></div>
<!-- Bottom: Manage access and avatars -->
<div class="bottom-section">
<div class="manage-label">Manage access</div>
<div class="avatars">
<div class="chip magenta">C</div>
<div class="divider"></div>
<div class="chip teal">
<!-- simple user silhouette -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="8" r="4"></circle>
<path d="M4 20c0-4.5 16-4.5 16 0" />
</svg>
</div>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html>