AndroidCode / code /10193 /10193_4.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
raw
history blame
10.3 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Fix & manage UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: "Segoe UI", Roboto, Arial, sans-serif; }
#render-target {
position: relative;
overflow: hidden;
width: 1080px;
height: 2400px;
background: #0d1f20;
color: #e6f0ef;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 110px;
padding: 0 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #eaf2f1;
font-size: 42px;
letter-spacing: 0.5px;
}
.status-right {
display: flex;
align-items: center;
gap: 24px;
}
.icon {
width: 44px;
height: 44px;
}
/* Page header */
.content {
position: absolute;
top: 150px;
left: 56px;
right: 56px;
}
.title {
font-size: 88px;
font-weight: 600;
margin: 30px 0 40px 0;
color: #d2e6e5;
}
/* Cards grid */
.cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
margin-right: 8px;
}
.card {
background: #13282a;
border-radius: 34px;
height: 190px;
padding: 36px;
box-sizing: border-box;
display: flex;
align-items: center;
gap: 28px;
color: #d7e8e8;
box-shadow: 0 2px 0 rgba(0,0,0,0.15) inset;
}
.card span {
font-size: 44px;
font-weight: 500;
}
.mint { color: #75e0c2; }
.card.wide {
grid-column: 1 / span 2;
}
/* Other tools section */
.section-title {
margin-top: 56px;
margin-bottom: 24px;
font-size: 40px;
color: #99b3b2;
font-weight: 500;
}
.list {
margin-top: 12px;
border-radius: 24px;
}
.list-item {
display: flex;
align-items: center;
gap: 28px;
height: 120px;
font-size: 44px;
color: #cfe0df;
}
.divider {
height: 2px;
background: #1f3638;
margin-left: 96px;
}
/* Floating avatar */
.avatar {
position: absolute;
top: 220px;
right: 56px;
width: 94px;
height: 94px;
border-radius: 50%;
background: #d5712e;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 44px;
color: #ffffff;
box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}
/* Snackbar */
.snackbar {
position: absolute;
bottom: 270px;
left: 50%;
transform: translateX(-50%);
background: #3c4647;
color: #e6f0ef;
border-radius: 48px;
padding: 30px 40px;
display: flex;
align-items: center;
gap: 22px;
font-size: 38px;
box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.mini-avatar {
width: 68px;
height: 68px;
border-radius: 50%;
background: #a9c1fa;
display: flex;
align-items: center;
justify-content: center;
color: #1b2c3b;
font-weight: 700;
}
/* Bottom navigation */
.bottom-nav {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 200px;
background: #0f2324;
border-top: 2px solid #102a2c;
display: flex;
align-items: center;
justify-content: space-around;
padding-bottom: 20px;
box-sizing: border-box;
}
.nav-item {
width: 280px;
height: 150px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16px;
color: #cdd9d8;
font-size: 36px;
}
.nav-item .icon {
width: 56px;
height: 56px;
}
.nav-active {
position: relative;
color: #d7e8e8;
}
.nav-active .active-pill {
position: absolute;
top: -12px;
width: 170px;
height: 86px;
background: #1f6f5c;
border-radius: 44px;
z-index: 0;
}
.nav-active .icon, .nav-active span { z-index: 1; }
/* Gesture bar */
.gesture-bar {
position: absolute;
bottom: 210px;
left: 50%;
transform: translateX(-50%);
width: 210px;
height: 12px;
background: #e6e6e6;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>12:23</div>
<div class="status-right">
<!-- simple icons to mimic system status -->
<svg class="icon" viewBox="0 0 24 24" stroke="#e6f0ef" fill="none" stroke-width="2">
<path d="M4 10h16v4H4z"/>
<path d="M2 12h2"/>
<path d="M20 10v4" stroke="#e6f0ef"/>
</svg>
<svg class="icon" viewBox="0 0 24 24" stroke="#e6f0ef" fill="none" stroke-width="2">
<path d="M3 12c3-5 7-7 11-7s8 2 7 7-5 7-11 7-10-2-7-7z" />
</svg>
<div style="display:flex;align-items:center;gap:10px;">
<svg class="icon" viewBox="0 0 24 24" stroke="#e6f0ef" fill="none" stroke-width="2">
<rect x="3" y="6" width="16" height="12" rx="2" />
<rect x="5" y="8" width="12" height="8" fill="#e6f0ef"/>
</svg>
<span>100%</span>
</div>
</div>
</div>
<!-- Floating avatar -->
<div class="avatar">R</div>
<!-- Main content -->
<div class="content">
<div class="title">Fix & manage</div>
<div class="cards">
<!-- Merge & fix -->
<div class="card">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<path d="M4 14l6-6" />
<path d="M8 18l-4-4" />
<circle cx="10" cy="8" r="2" />
<path d="M14 10l6 6" />
<circle cx="16" cy="16" r="2" />
</svg>
<span>Merge & fix</span>
</div>
<!-- Reminders -->
<div class="card">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<rect x="4" y="5" width="12" height="9" rx="2"/>
<rect x="8" y="10" width="12" height="9" rx="2"/>
</svg>
<span>Reminders</span>
</div>
<!-- Restore contacts -->
<div class="card">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<path d="M6 14c0-3 3-5 6-5s6 2 6 5" />
<path d="M4 14c0-4 3-7 8-7 4 0 7 3 7 7" />
<path d="M12 9v7" />
<path d="M9 13l3 3 3-3" />
</svg>
<span>Restore contacts</span>
</div>
<!-- Import from file -->
<div class="card">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<path d="M12 5v10" />
<path d="M9 12l3 3 3-3" />
<rect x="4" y="18" width="16" height="2" />
</svg>
<span>Import from file</span>
</div>
<!-- Export to file -->
<div class="card">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<path d="M12 19V9" />
<path d="M9 12l3-3 3 3" />
<rect x="4" y="6" width="16" height="2" />
</svg>
<span>Export to file</span>
</div>
<!-- Trash -->
<div class="card">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<path d="M4 7h16" />
<path d="M8 7V5h8v2" />
<rect x="6" y="7" width="12" height="12" rx="2" />
<path d="M10 11v6M14 11v6" />
</svg>
<span>Trash</span>
</div>
<!-- Settings wide -->
<div class="card wide">
<svg class="icon" viewBox="0 0 24 24" stroke="#75e0c2" fill="none" stroke-width="2">
<circle cx="12" cy="12" r="3" />
<path d="M4 12h2M18 12h2M12 4v2M12 18v2M6.5 6.5l1.5 1.5M16 16l1.5 1.5M16 8l1.5-1.5M6.5 17.5l1.5-1.5" />
</svg>
<span>Settings</span>
</div>
</div>
<!-- Other tools -->
<div class="section-title">Other tools</div>
<div class="list">
<div class="list-item">
<svg class="icon" viewBox="0 0 24 24" stroke="#cfe0df" fill="none" stroke-width="2">
<path d="M12 3l3 6 6 3-6 3-3 6-3-6-6-3 6-3z" />
</svg>
<span>Emergency contacts</span>
</div>
<div class="divider"></div>
<div class="list-item">
<svg class="icon" viewBox="0 0 24 24" stroke="#cfe0df" fill="none" stroke-width="2">
<path d="M3 12l9-7 9 7" />
<rect x="7" y="12" width="10" height="8" />
<circle cx="12" cy="15" r="1.6" fill="#cfe0df"/>
</svg>
<span>Household contacts</span>
</div>
<div class="divider"></div>
<div class="list-item">
<svg class="icon" viewBox="0 0 24 24" stroke="#cfe0df" fill="none" stroke-width="2">
<path d="M3 12l9-7 9 7" />
<rect x="7" y="12" width="10" height="8" rx="2" />
</svg>
<span>Family group</span>
</div>
<div class="divider"></div>
<div class="list-item">
<svg class="icon" viewBox="0 0 24 24" stroke="#cfe0df" fill="none" stroke-width="2">
<circle cx="12" cy="12" r="8" />
<path d="M5 5l14 14" />
</svg>
<span>Blocked numbers</span>
</div>
<div class="divider"></div>
</div>
</div>
<!-- Snackbar -->
<div class="snackbar">
<div class="mini-avatar"></div>
<div>contacts.vcf will be imported shortly.</div>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item">
<svg class="icon" viewBox="0 0 24 24" stroke="#cdd9d8" fill="none" stroke-width="2">
<path d="M4 20h16v-9l-8-6-8 6z" />
<path d="M10 20v-6h4v6" />
</svg>
<span>Contacts</span>
</div>
<div class="nav-item">
<svg class="icon" viewBox="0 0 24 24" stroke="#cdd9d8" fill="none" stroke-width="2">
<path d="M4 5h16v4H4zM4 11h16v4H4zM4 17h16v2H4z" />
</svg>
<span>Highlights</span>
</div>
<div class="nav-item nav-active">
<div class="active-pill"></div>
<svg class="icon" viewBox="0 0 24 24" stroke="#d7e8e8" fill="none" stroke-width="2">
<path d="M4 14l6-6M8 18l-4-4" />
<circle cx="16" cy="16" r="2" />
<path d="M14 10l6 6" />
</svg>
<span>Fix & manage</span>
</div>
</div>
<!-- Gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html>