AndroidCode / code /10119 /10119_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
5.01 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>About phone - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #202224; /* dark content background */
font-family: Roboto, Arial, sans-serif;
color: #E9ECEF;
}
/* Top bars */
.top-area {
position: absolute;
top: 0; left: 0; right: 0;
height: 240px; /* status + app bar combined */
background: #4b4c4e;
}
.status-bar {
height: 110px;
display: flex; align-items: center; justify-content: space-between;
padding: 0 36px;
color: #fff;
font-weight: 500;
font-size: 36px;
letter-spacing: 0.5px;
}
.status-left, .status-right {
display: flex; align-items: center; gap: 18px;
}
.chip {
font-size: 26px;
background: rgba(255,255,255,0.12);
color: #fff;
padding: 6px 12px;
border-radius: 10px;
}
.app-bar {
height: 130px;
display: flex; align-items: center;
padding: 0 36px;
color: #fff;
}
.back-btn {
width: 72px; height: 72px; margin-right: 18px;
display: flex; align-items: center; justify-content: center;
opacity: 0.95;
}
.app-title {
font-size: 58px; font-weight: 500;
letter-spacing: 0.2px;
}
/* Content */
.content {
position: absolute;
top: 240px; left: 0; right: 0; bottom: 0;
padding: 0 52px 52px;
overflow: hidden;
}
.section {
margin: 54px 0;
}
.title {
font-size: 54px; font-weight: 500; color: #e6e6e6;
margin-bottom: 18px;
}
.value {
font-size: 36px; color: #cbd2d9;
line-height: 1.4;
}
.hint {
font-size: 34px; color: #9fa6ad;
}
.link {
font-size: 38px; color: #8ab4f8; font-weight: 500;
}
/* Simple scrollbar hint to mimic screenshot */
.scroll-indicator {
position: absolute;
right: 8px; top: 980px;
width: 8px; height: 440px; border-radius: 6px;
background: rgba(255,255,255,0.18);
}
/* Icon styling */
svg { display: block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Top bars -->
<div class="top-area">
<div class="status-bar">
<div class="status-left">
<div>10:24</div>
<div class="chip">5G</div>
<div class="chip"></div>
</div>
<div class="status-right">
<!-- Wi-Fi icon -->
<svg width="44" height="44" viewBox="0 0 24 24">
<path d="M2 8c5-4 15-4 20 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.8"/>
<path d="M5 12c4-3 10-3 14 0" stroke="#fff" stroke-width="2" fill="none" opacity="0.85"/>
<circle cx="12" cy="17" r="2" fill="#fff"/>
</svg>
<!-- Battery icon -->
<svg width="52" height="44" viewBox="0 0 28 16">
<rect x="1" y="2" width="22" height="12" rx="2" stroke="#fff" fill="none" stroke-width="2"/>
<rect x="3" y="4" width="16" height="8" fill="#fff"/>
<rect x="24" y="6" width="3" height="4" rx="1" fill="#fff"/>
</svg>
</div>
</div>
<div class="app-bar">
<div class="back-btn" aria-label="Back">
<svg width="48" height="48" viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" stroke="#fff" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="app-title">About phone</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="section">
<div class="title">Model</div>
<div class="value">Pixel 5a</div>
</div>
<div class="section">
<div class="title">IMEI</div>
<div class="value">357641620997163</div>
</div>
<div class="section">
<div class="title">Android version</div>
<div class="value">13</div>
</div>
<div class="section">
<div class="link">Device identifiers</div>
</div>
<div class="section">
<div class="title">IP address</div>
<div class="value">fe80::f2c:82e4:f0f6:692e<br>172.23.0.227</div>
</div>
<div class="section">
<div class="title">Wi‑Fi MAC address</div>
<div class="hint">To view, choose saved network</div>
</div>
<div class="section">
<div class="title">Device Wi‑Fi MAC address</div>
<div class="value">60:b7:6e:3c:29:d2</div>
</div>
<div class="section">
<div class="title">Bluetooth address</div>
<div class="value">60:b7:6e:3c:29:d1</div>
</div>
<div class="section">
<div class="title">Up time</div>
<div class="value">72:44:34</div>
</div>
<div class="section" style="margin-top: 80px;">
<div class="value" style="font-size: 44px; color: #e6e6e6;">
Send feedback <span style="text-decoration: underline;">about this</span> device
</div>
</div>
</div>
<div class="scroll-indicator"></div>
</div>
</body>
</html>