File size: 4,574 Bytes
0e1717f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About phone - Mock</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;
width: 1080px;
height: 140px;
background: #3a3a3a;
color: #FFFFFF;
display: flex;
align-items: center;
padding: 0 40px;
box-sizing: border-box;
font-size: 40px;
letter-spacing: 0.5px;
}
.status-left {
display: flex;
align-items: center;
gap: 18px;
}
.status-right {
margin-left: auto;
display: flex;
align-items: center;
gap: 28px;
}
.status-icon svg {
width: 44px;
height: 44px;
fill: #FFFFFF;
}
/* App bar */
.app-bar {
position: absolute;
top: 140px;
left: 0;
width: 1080px;
height: 170px;
background: #2b2b2b;
display: flex;
align-items: center;
padding: 0 34px;
box-sizing: border-box;
}
.back-icon {
width: 80px;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16px;
}
.app-title {
font-size: 64px;
font-weight: 600;
color: #EDEDED;
}
/* Content */
.content {
position: absolute;
top: 310px;
left: 0;
width: 100%;
height: 1880px;
padding: 0 48px;
box-sizing: border-box;
overflow: hidden;
background: #1c1c1c;
}
.item {
margin-bottom: 68px;
}
.label {
font-size: 56px;
font-weight: 500;
color: #EAEAEA;
margin-bottom: 16px;
letter-spacing: -0.2px;
}
.value {
font-size: 36px;
color: #C9C9C9;
}
.value.multiline {
line-height: 1.4;
}
.subtext {
font-size: 32px;
color: #9AA0A6;
margin-top: 8px;
}
.link {
font-size: 42px;
color: #8AB4F8;
font-weight: 500;
margin: 24px 0 16px;
}
/* Gesture bar */
.gesture-bar {
position: absolute;
bottom: 24px;
left: 50%;
transform: translateX(-50%);
width: 320px;
height: 16px;
background: #D9D9D9;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<div>10:24</div>
</div>
<div class="status-right">
<div class="status-icon">
<!-- Wi-Fi icon -->
<svg viewBox="0 0 24 24">
<path d="M12 18l2.5 2.5L12 23l-2.5-2.5L12 18zm-6.5-6.2a12 12 0 0 1 17 0l-1.6 1.6a9.5 9.5 0 0 0-13.8 0L5.5 11.8zm3.6 3.6a7 7 0 0 1 9.8 0l-1.6 1.6a4.9 4.9 0 0 0-6.6 0l-1.6-1.6z"/>
</svg>
</div>
<div class="status-icon">
<!-- Battery icon -->
<svg viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="2"></rect>
<rect x="20" y="10" width="2" height="4"></rect>
<rect x="4" y="8" width="12" height="8" fill="#76FF03"></rect>
</svg>
</div>
</div>
</div>
<!-- App bar -->
<div class="app-bar">
<div class="back-icon">
<svg viewBox="0 0 24 24" width="60" height="60" fill="#FFFFFF">
<path d="M15 6l-6 6 6 6" stroke="#FFFFFF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="app-title">About phone</div>
</div>
<!-- Content -->
<div class="content">
<div class="item">
<div class="label">IMEI</div>
<div class="value">357641620997163</div>
</div>
<div class="item">
<div class="label">Android version</div>
<div class="value">13</div>
</div>
<div class="link">Device identifiers</div>
<div class="item">
<div class="label">IP address</div>
<div class="value multiline">fe80::f2c:82e4:f0f6:692e<br>172.23.0.227</div>
</div>
<div class="item">
<div class="label">Wi‑Fi MAC address</div>
<div class="subtext">To view, choose saved network</div>
</div>
<div class="item">
<div class="label">Device Wi‑Fi MAC address</div>
<div class="value">60:b7:6e:3c:29:d2</div>
</div>
<div class="item">
<div class="label">Bluetooth address</div>
<div class="value">60:b7:6e:3c:29:d1</div>
</div>
<div class="item">
<div class="label">Up time</div>
<div class="value">72:44:58</div>
</div>
<div class="item">
|