AndroidCode / code /10050 /10050_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Mobile UI - Settings</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, Helvetica, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #0B0B0B;
color: #fff;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 110px;
padding: 0 36px;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: space-between;
color: #eaeaea;
font-size: 42px;
letter-spacing: 1px;
}
.status-right {
display: flex;
align-items: center;
gap: 26px;
}
.status-icon {
display: inline-flex;
align-items: center;
justify-content: center;
}
/* Header */
.header {
position: absolute;
top: 110px;
left: 0;
width: 1080px;
height: 150px;
display: flex;
align-items: center;
padding: 0 36px;
box-sizing: border-box;
}
.back-btn {
width: 96px;
height: 96px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 12px;
}
.title {
font-size: 72px;
font-weight: 600;
letter-spacing: 0.5px;
}
.menu-btn {
margin-left: auto;
width: 96px;
height: 96px;
display: flex;
align-items: center;
justify-content: center;
}
/* Content list */
.content {
position: absolute;
top: 260px;
left: 0;
width: 1080px;
padding: 0 54px;
box-sizing: border-box;
}
.option-row {
height: 120px;
display: flex;
align-items: center;
font-size: 54px;
color: #F5F5F5;
}
.divider {
width: 100%;
height: 1px;
background: #1E1E1E;
margin: 18px 0 30px 0;
}
.section-label {
font-size: 40px;
color: #9AA0A6;
margin: 18px 0 16px 0;
}
.list-item {
height: 120px;
display: flex;
align-items: center;
gap: 36px;
font-size: 54px;
color: #FFFFFF;
}
.bullet {
width: 56px;
height: 56px;
border-radius: 50%;
flex: 0 0 56px;
}
.bullet.blue { background: #6DA3FF; }
.bullet.blue2 { background: #7E88FF; }
.bullet.green { background: #70C690; }
.bullet.teal { background: #66AEB1; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">9:54</div>
<div class="status-right">
<!-- simple icons -->
<div class="status-icon">
<!-- bell / notifications -->
<svg width="34" height="34" viewBox="0 0 24 24" fill="none">
<path d="M12 3c-3 0-5 2-5 5v3c0 1-1 2-2 3v2h14v-2c-1-1-2-2-2-3V8c0-3-2-5-5-5z" stroke="#eaeaea" stroke-width="1.6" />
<circle cx="12" cy="20" r="2" fill="#eaeaea"/>
</svg>
</div>
<div class="status-icon">
<!-- location / pin -->
<svg width="34" height="34" viewBox="0 0 24 24" fill="none">
<path d="M12 3a7 7 0 0 0-7 7c0 5 7 11 7 11s7-6 7-11a7 7 0 0 0-7-7z" stroke="#eaeaea" stroke-width="1.6"/>
<circle cx="12" cy="10" r="2.7" fill="#eaeaea"/>
</svg>
</div>
<div class="status-icon">
<!-- wifi -->
<svg width="38" height="38" viewBox="0 0 24 24" fill="none">
<path d="M2 9c5-5 15-5 20 0" stroke="#eaeaea" stroke-width="1.6" stroke-linecap="round"/>
<path d="M5 12c4-4 10-4 14 0" stroke="#eaeaea" stroke-width="1.6" stroke-linecap="round"/>
<path d="M8 15c3-3 5-3 8 0" stroke="#eaeaea" stroke-width="1.6" stroke-linecap="round"/>
<circle cx="12" cy="18" r="1.7" fill="#eaeaea"/>
</svg>
</div>
<div class="status-icon">
<!-- battery -->
<svg width="46" height="34" viewBox="0 0 28 16" fill="none">
<rect x="1" y="3" width="22" height="10" rx="2" stroke="#eaeaea" stroke-width="1.8"/>
<rect x="3" y="5" width="15" height="6" fill="#eaeaea"/>
<rect x="23.5" y="6" width="3" height="4" rx="1" fill="#eaeaea"/>
</svg>
</div>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="back-btn">
<svg width="60" height="60" viewBox="0 0 36 36" fill="none">
<path d="M22 6 L10 18 L22 30" stroke="#FFFFFF" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="title">Settings</div>
<div class="menu-btn">
<!-- vertical dots -->
<svg width="36" height="36" viewBox="0 0 24 24" fill="#ffffff">
<circle cx="12" cy="5" r="2.2"/>
<circle cx="12" cy="12" r="2.2"/>
<circle cx="12" cy="19" r="2.2"/>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="option-row">General</div>
<div class="option-row">Events from Gmail</div>
<div class="divider"></div>
<div class="section-label">dbwscratch.test.id2@gmail.com</div>
<div class="list-item">
<div class="bullet blue"></div>
<div>Events</div>
</div>
<div class="list-item">
<div class="bullet blue2"></div>
<div>Tasks</div>
</div>
<div class="divider" style="margin-top:30px;"></div>
<div class="section-label">More</div>
<div class="list-item">
<div class="bullet green"></div>
<div>Birthdays</div>
</div>
<div class="list-item">
<div class="bullet teal"></div>
<div>Holidays</div>
</div>
</div>
<!-- Bottom gesture bar indicator -->
<div style="
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
width: 520px;
height: 14px;
background: #E6E6E6;
border-radius: 8px;
opacity: 0.7;">
</div>
</div>
</body>
</html>