AndroidCode / code /10050 /10050_7.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<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>