File size: 5,012 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
<!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>