AndroidCode / code /10119 /10119_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
4.94 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About phone - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #121212;
color: #FFFFFF;
font-family: Roboto, Arial, sans-serif;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 120px;
padding: 24px 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #E0E0E0;
font-size: 34px;
letter-spacing: 0.5px;
}
.sb-right {
display: flex;
align-items: center;
gap: 28px;
}
.icon {
width: 36px;
height: 36px;
color: #E0E0E0;
}
/* Back arrow */
.back-btn {
position: absolute;
top: 150px;
left: 40px;
width: 48px;
height: 48px;
color: #E0E0E0;
}
/* Title */
.title {
position: absolute;
top: 260px;
left: 40px;
font-size: 76px;
font-weight: 500;
color: #F5F5F5;
}
/* Content list */
.content {
position: absolute;
top: 420px;
left: 40px;
right: 40px;
}
.section-label {
font-size: 32px;
color: #8AB4F8;
margin: 40px 0 12px 0;
}
.item {
margin: 36px 0;
}
.item-title {
font-size: 46px;
color: #EAEAEA;
margin-bottom: 12px;
}
.item-sub {
font-size: 28px;
color: #9AA0A6;
}
/* Bottom gesture pill */
.gesture-pill {
position: absolute;
bottom: 42px;
left: 50%;
transform: translateX(-50%);
width: 220px;
height: 10px;
background: #E0E0E0;
border-radius: 6px;
opacity: 0.9;
}
/* Right side scrollbar hint */
.scrollbar {
position: absolute;
right: 12px;
top: 980px;
width: 8px;
height: 620px;
background: #606060;
border-radius: 4px;
opacity: 0.6;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>10:21</div>
<div class="sb-right">
<!-- Simple cellular bars icon -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="2" y="16" width="3" height="6" fill="currentColor"></rect>
<rect x="7" y="13" width="3" height="9" fill="currentColor" opacity="0.85"></rect>
<rect x="12" y="10" width="3" height="12" fill="currentColor" opacity="0.7"></rect>
<rect x="17" y="7" width="3" height="15" fill="currentColor" opacity="0.55"></rect>
</svg>
<!-- Wifi icon -->
<svg class="icon" viewBox="0 0 24 24">
<path d="M2.5 8.5c5.2-4.7 13.8-4.7 19 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M5 12c3.8-3.4 10.2-3.4 14 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/>
<path d="M8 15.5c2.6-2.3 7.4-2.3 10 0" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/>
<circle cx="12" cy="19.5" r="1.6" fill="currentColor"></circle>
</svg>
<!-- Battery icon -->
<svg class="icon" viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="2" ry="2" stroke="currentColor" stroke-width="2" fill="none"/>
<rect x="3.8" y="7.8" width="14.5" height="8.4" fill="currentColor"></rect>
<rect x="20.5" y="9" width="2.5" height="6" rx="1" fill="currentColor"></rect>
</svg>
</div>
</div>
<!-- Back Arrow -->
<svg class="back-btn" viewBox="0 0 24 24">
<path d="M15.5 4.5 6 12l9.5 7.5" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<!-- Title -->
<div class="title">About phone</div>
<!-- Content -->
<div class="content">
<div class="section-label">Basic info</div>
<div class="item">
<div class="item-title">Device name</div>
<div class="item-sub">Pixel 5a</div>
</div>
<div class="item">
<div class="item-title">Google Account</div>
<div class="item-sub">dbwscratch.test.id7@gmail.com</div>
</div>
<div class="item">
<div class="item-title">Phone number</div>
<div class="item-sub">Unknown</div>
</div>
<div class="section-label" style="margin-top: 70px;">Legal &amp; regulatory</div>
<div class="item"><div class="item-title">Legal information</div></div>
<div class="item"><div class="item-title">Regulatory labels</div></div>
<div class="item"><div class="item-title">Safety &amp; regulatory manual</div></div>
<div class="section-label" style="margin-top: 70px;">Device details</div>
<div class="item">
<div class="item-title">SIM status</div>
<div class="item-sub">Not available</div>
</div>
</div>
<!-- Scroll indicator -->
<div class="scrollbar"></div>
<!-- Gesture pill -->
<div class="gesture-pill"></div>
</div>
</body>
</html>