File size: 4,941 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 | <!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 & 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 & 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> |