AndroidCode / code /10117 /10117_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
8.71 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>UI Render</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #121212; color: #EDEDED;
}
/* Status bar */
.status-bar {
position: absolute; top: 0; left: 0; right: 0;
height: 110px; padding: 0 40px;
display: flex; align-items: center; justify-content: space-between;
color: #EDEDED; font-weight: 600; font-size: 40px;
}
.status-right { display: flex; align-items: center; gap: 22px; font-size: 32px; color: #BFBFBF; }
.status-icon { width: 30px; height: 30px; border-radius: 50%; background: #3A3A3A; }
/* Search header */
.search-header {
position: absolute; top: 120px; left: 30px; right: 30px;
display: flex; align-items: center; gap: 24px;
}
.back-btn {
width: 90px; height: 90px; display: flex; align-items: center; justify-content: center;
border-radius: 45px; background: transparent;
}
.back-btn svg { width: 44px; height: 44px; }
.search-pill {
flex: 1; height: 110px; border-radius: 55px;
background: #2E3A2C; /* olive/greenish dark */
display: flex; align-items: center; justify-content: space-between;
padding: 0 34px; color: #D8E0D0; font-size: 44px; font-weight: 600;
}
.search-text { letter-spacing: 0.2px; }
.clear-btn svg { width: 36px; height: 36px; }
/* Filter chips */
.chips {
position: absolute; top: 260px; left: 30px; right: 30px;
display: flex; gap: 22px;
}
.chip {
height: 88px; padding: 0 36px; border-radius: 44px;
border: 1px solid #3A3A3A; background: #1B1B1B;
display: inline-flex; align-items: center; gap: 18px;
color: #CFCFCF; font-size: 34px; font-weight: 600;
}
.chip svg { width: 22px; height: 22px; fill: #8A8A8A; }
/* Section heading */
.section-label {
position: absolute; top: 380px; left: 40px;
font-size: 36px; color: #9E9E9E;
}
/* Email list */
.email {
position: relative;
width: 1000px; margin-left: 40px;
display: grid; grid-template-columns: 120px 1fr 80px;
column-gap: 30px; align-items: center;
padding: 32px 0; border-bottom: 1px solid transparent;
}
.email + .email { margin-top: 22px; }
.avatar {
width: 100px; height: 100px; border-radius: 50%;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 22px; text-align: center;
}
.email-content { display: grid; grid-template-rows: auto auto auto; row-gap: 10px; }
.title-row {
display: flex; align-items: baseline; justify-content: space-between;
}
.email-title {
font-size: 42px; font-weight: 800; color: #F5F5F5;
}
.highlight {
background: #FFE08A; color: #2B2B2B; padding: 6px 8px; border-radius: 6px; margin-right: 6px;
}
.time { font-size: 34px; color: #CFCFCF; }
.subject { font-size: 36px; color: #EDEDED; font-weight: 700; }
.snippet {
font-size: 32px; color: #BDBDBD;
display: flex; align-items: center; gap: 16px;
white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.label-pill {
font-size: 28px; color: #CFCFCF;
background: #222; border: 1px solid #444; border-radius: 16px;
padding: 6px 14px;
}
.star-btn {
display: flex; align-items: center; justify-content: center;
}
.star-btn svg { width: 46px; height: 46px; stroke: #CFCFCF; fill: none; stroke-width: 2.5; }
/* Bottom bar */
.bottom-bar {
position: absolute; bottom: 120px; left: 0; right: 0;
height: 160px; padding: 0 80px;
display: flex; align-items: center; justify-content: space-between;
color: #EDEDED;
}
.nav-pill {
width: 260px; height: 100px; background: #314433; border-radius: 50px;
display: flex; align-items: center; justify-content: center; position: relative;
}
.badge {
position: absolute; top: -10px; right: 40px;
background: #E6A1A1; color: #1B1B1B; font-weight: 700;
width: 58px; height: 58px; border-radius: 29px;
display: flex; align-items: center; justify-content: center; font-size: 34px; border: 2px solid #D38D8D;
}
.nav-icon svg { width: 42px; height: 42px; }
.meet-icon { width: 90px; height: 90px; display: flex; align-items: center; justify-content: center; }
/* Gesture bar */
.gesture {
position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
width: 360px; height: 16px; background: #FFFFFF; border-radius: 8px; opacity: 0.85;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="time">11:25</div>
<div class="status-right">
<div class="status-icon"></div>
<div class="status-icon"></div>
<div>100%</div>
<svg width="48" height="28" viewBox="0 0 48 28">
<rect x="2" y="4" width="38" height="20" rx="4" fill="none" stroke="#CFCFCF" stroke-width="2"/>
<rect x="4" y="6" width="32" height="16" rx="3" fill="#CFCFCF"/>
<rect x="42" y="10" width="4" height="8" rx="2" fill="#CFCFCF"/>
</svg>
</div>
</div>
<!-- Search header -->
<div class="search-header">
<div class="back-btn">
<svg viewBox="0 0 24 24">
<path d="M15 5 L6 12 L15 19" stroke="#EDEDED" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="search-pill">
<span class="search-text">Netalie Larson</span>
<div class="clear-btn">
<svg viewBox="0 0 24 24">
<path d="M6 6 L18 18 M18 6 L6 18" stroke="#D8E0D0" stroke-width="2.5" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Filter chips -->
<div class="chips">
<div class="chip">
<span>Labels</span>
<svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
</div>
<div class="chip">
<span>From</span>
<svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
</div>
<div class="chip">
<span>To</span>
<svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
</div>
<div class="chip">
<span>Attachment</span>
<svg viewBox="0 0 24 24"><path d="M6 9 L12 15 L18 9" /></svg>
</div>
</div>
<!-- Section -->
<div class="section-label">Results in mail</div>
<!-- Email 1 -->
<div class="email" style="top: 440px;">
<div class="avatar">[IMG: Avatar]</div>
<div class="email-content">
<div class="title-row">
<div class="email-title">
<span class="highlight">Natalie</span><span class="highlight">Larson</span>
</div>
<div class="time">10:45 PM</div>
</div>
<div class="subject">Happiness</div>
<div class="snippet">Hi, Karin How are you ? <span class="label-pill">Inbox</span></div>
</div>
<div class="star-btn">
<svg viewBox="0 0 24 24">
<path d="M12 2 L14.8 8.8 L22 9.2 L16.7 13.7 L18.6 21 L12 17.2 L5.4 21 L7.3 13.7 L2 9.2 L9.2 8.8 Z"/>
</svg>
</div>
</div>
<!-- Email 2 -->
<div class="email" style="top: 480px;">
<div class="avatar">[IMG: Avatar]</div>
<div class="email-content">
<div class="title-row">
<div class="email-title">
<span class="highlight">Natalie</span><span class="highlight">Larson</span>
</div>
<div class="time">5:38 PM</div>
</div>
<div class="subject">(no subject)</div>
<div class="snippet">, Karin <span class="highlight">Natalie</span> this side , I want to sha... <span class="label-pill">Inbox</span></div>
</div>
<div class="star-btn">
<svg viewBox="0 0 24 24">
<path d="M12 2 L14.8 8.8 L22 9.2 L16.7 13.7 L18.6 21 L12 17.2 L5.4 21 L7.3 13.7 L2 9.2 L9.2 8.8 Z"/>
</svg>
</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-bar">
<div class="nav-pill">
<div class="nav-icon">
<svg viewBox="0 0 24 24">
<rect x="3" y="5" width="18" height="14" rx="2" fill="none" stroke="#DDE7D3" stroke-width="2"/>
<path d="M4 6 L12 12 L20 6" stroke="#DDE7D3" stroke-width="2" fill="none"/>
</svg>
</div>
<div class="badge">8</div>
</div>
<div class="meet-icon">
<svg viewBox="0 0 24 24">
<rect x="3" y="6" width="14" height="12" rx="2" fill="none" stroke="#CFCFCF" stroke-width="2"/>
<polygon points="17,9 22,12 17,15" fill="#CFCFCF"/>
</svg>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html>