File size: 5,044 Bytes
fa881a6 | 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 214 215 216 217 218 219 220 221 | <html>
<head>
<meta charset="UTF-8">
<title>Android - Remove Account Dialog</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #F7F7F7;
border-radius: 0;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 100px;
color: #FFFFFF;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 28px;
box-sizing: border-box;
background: rgba(0,0,0,0.05);
}
.status-left {
font-size: 42px;
font-weight: 500;
letter-spacing: 1px;
}
.status-right {
display: flex;
gap: 22px;
align-items: center;
}
.icon {
width: 44px; height: 44px;
}
/* App content */
.app-bar {
position: absolute;
top: 120px;
left: 0;
width: 1080px;
height: 140px;
display: flex;
align-items: center;
}
.back-btn {
width: 100px; height: 100px; margin-left: 32px;
display: flex; align-items: center; justify-content: center;
}
.title {
position: absolute;
top: 280px;
left: 60px;
font-size: 110px;
font-weight: 500;
color: #212121;
}
.account-block {
position: absolute;
top: 520px;
left: 90px;
width: 900px;
display: flex;
align-items: center;
gap: 40px;
}
.avatar {
width: 140px; height: 140px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 28px;
}
.email {
font-size: 48px;
color: #202124;
font-weight: 500;
}
.big-green-btn {
position: absolute;
top: 1280px;
left: 240px;
width: 600px;
height: 110px;
background: #1B5E20;
border-radius: 70px;
display: flex; align-items: center; justify-content: center;
color: #FFFFFF;
font-size: 44px;
font-weight: 700;
}
/* Overlay and dialog */
.overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.55);
}
.dialog {
position: absolute;
left: 90px;
top: 980px;
width: 900px;
background: #FFFFFF;
border-radius: 52px;
box-shadow: 0 30px 60px rgba(0,0,0,0.35);
padding: 60px;
box-sizing: border-box;
color: #202124;
}
.dialog h2 {
margin: 0 0 36px 0;
font-size: 64px;
font-weight: 700;
}
.dialog p {
margin: 0 0 60px 0;
font-size: 40px;
line-height: 1.35;
color: #3C4043;
}
.dialog-actions {
display: flex;
justify-content: flex-end;
gap: 60px;
}
.text-btn {
font-size: 42px;
font-weight: 700;
cursor: default;
}
.text-btn.cancel { color: #2F4F2F; opacity: 0.85; }
.text-btn.primary { color: #2E7D32; }
/* Bottom gesture pill */
.gesture-bar {
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 14px;
background: #FFFFFF;
border-radius: 8px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">9:57</div>
<div class="status-right">
<!-- simple placeholder icons -->
<svg class="icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="#FFFFFF" opacity="0.85"></circle>
</svg>
<svg class="icon" viewBox="0 0 24 24">
<path d="M2 16c4-5 8-7 12-7s8 2 8 7" stroke="#FFFFFF" stroke-width="2" fill="none"/>
<circle cx="14" cy="16" r="2" fill="#FFFFFF"/>
</svg>
<svg class="icon" viewBox="0 0 24 24">
<rect x="4" y="6" width="16" height="12" rx="2" ry="2" fill="none" stroke="#FFFFFF" stroke-width="2"/>
<rect x="6" y="8" width="12" height="8" fill="#FFFFFF"/>
</svg>
</div>
</div>
<!-- App bar with back -->
<div class="app-bar">
<div class="back-btn">
<svg width="60" height="60" viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" stroke="#000000" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
<!-- Page title -->
<div class="title">Google</div>
<!-- Account info -->
<div class="account-block">
<div class="avatar">[IMG: Google Avatar]</div>
<div class="email">dbwscratch.test.id2@gmail.com</div>
</div>
<!-- Underlying button (seen faintly behind overlay) -->
<div class="big-green-btn">Remove account</div>
<!-- Dim overlay -->
<div class="overlay"></div>
<!-- Confirmation dialog -->
<div class="dialog">
<h2>Remove account?</h2>
<p>Removing this account will delete all of its messages, contacts, and other data from the phone!</p>
<div class="dialog-actions">
<div class="text-btn cancel">Cancel</div>
<div class="text-btn primary">Remove account</div>
</div>
</div>
<!-- Bottom gesture pill -->
<div class="gesture-bar"></div>
</div>
</body>
</html> |