AndroidCode / code /10050 /10050_6.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html>
<head>
<meta charset="UTF-8">
<title>Google Account Settings UI</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: #F7F7F2;
color: #222;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
padding: 0 40px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #222;
font-size: 42px;
}
.status-left {
display: flex;
align-items: center;
gap: 20px;
}
.status-right {
display: flex;
align-items: center;
gap: 28px;
}
.tiny-dot { width: 14px; height: 14px; background:#555; border-radius:50%; display:inline-block; }
/* Top nav */
.top-nav {
position: absolute;
top: 140px;
left: 40px;
right: 40px;
height: 140px;
display: flex;
align-items: center;
gap: 28px;
}
.title {
font-size: 112px;
font-weight: 600;
letter-spacing: -1px;
}
/* Center avatar and email */
.center-block {
position: absolute;
top: 460px;
left: 0;
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
gap: 36px;
}
.avatar {
width: 160px;
height: 160px;
border-radius: 50%;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
}
.email {
font-size: 48px;
font-weight: 600;
text-align: center;
}
/* Sections */
.section-list {
position: absolute;
top: 770px;
left: 40px;
right: 40px;
border-top: 1px solid #E5E5E5;
}
.section {
padding: 48px 0;
border-bottom: 1px solid #EAEAEA;
display: flex;
align-items: center;
}
.section .icon {
width: 88px;
height: 88px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 32px;
}
.section .text {
display: flex;
flex-direction: column;
gap: 12px;
}
.section .title-text {
font-size: 54px;
font-weight: 600;
}
.section .sub-text {
font-size: 36px;
color: #666;
}
/* Remove account button */
.remove-wrap {
position: absolute;
top: 1180px;
left: 0;
width: 100%;
display: flex;
justify-content: center;
}
.remove-btn {
background: #2E6D3E;
color: #fff;
font-size: 46px;
font-weight: 700;
padding: 34px 60px;
border-radius: 90px;
box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
/* Bottom gesture bar */
.gesture-bar {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 14px;
background: #8B8B8B;
border-radius: 8px;
opacity: 0.8;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<span>9:57</span>
<span class="tiny-dot"></span>
</div>
<div class="status-right">
<!-- Simple status icons -->
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M2 16l6-6 4 4 6-6" stroke="#333" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<svg width="40" height="40" viewBox="0 0 24 24">
<rect x="3" y="6" width="18" height="12" rx="2" ry="2" stroke="#333" stroke-width="2" fill="none"></rect>
<rect x="5" y="8" width="14" height="8" fill="#333"></rect>
</svg>
</div>
</div>
<!-- Top Navigation -->
<div class="top-nav">
<svg width="72" height="72" viewBox="0 0 48 48">
<path d="M30 10 L16 24 L30 38" stroke="#222" stroke-width="6" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="title">Google</div>
</div>
<!-- Center Avatar & Email -->
<div class="center-block">
<div class="avatar">[IMG: Google Avatar]</div>
<div class="email">dbwscratch.test.id2@gmail.com</div>
</div>
<!-- Section List -->
<div class="section-list">
<div class="section">
<div class="icon"></div>
<div class="text">
<div class="title-text">Google Account</div>
<div class="sub-text">Info, security & personalization</div>
</div>
</div>
<div class="section">
<div class="icon">
<!-- Sync circular arrows -->
<svg width="88" height="88" viewBox="0 0 48 48">
<path d="M12 16c3-7 12-9 18-4l-4 4h10V6l-4 4C27 6 19 6 14 12c-3 3-4 6-4 10h6z" fill="#4A4A4A"></path>
<path d="M36 32c-3 7-12 9-18 4l4-4H12v10l4-4c5 4 13 4 18-2 3-3 4-6 4-10h-6z" fill="#4A4A4A"></path>
</svg>
</div>
<div class="text">
<div class="title-text">Account sync</div>
<div class="sub-text">Sync on for all items</div>
</div>
</div>
</div>
<!-- Remove account -->
<div class="remove-wrap">
<div class="remove-btn">Remove account</div>
</div>
<!-- Bottom gesture bar -->
<div class="gesture-bar"></div>
</div>
</body>
</html>