AndroidCode / code /10006 /10006_3.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fitbit Profile Info UI</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #F3F5F3;
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
color: #2F3A3A;
font-weight: 600;
font-size: 40px;
}
.status-icons {
display: flex;
align-items: center;
gap: 26px;
}
.status-icon { width: 44px; height: 44px; }
/* Content */
.content {
position: absolute;
top: 140px;
left: 60px;
right: 60px;
bottom: 0;
}
.avatar {
width: 108px;
height: 108px;
border-radius: 54px;
border: 8px solid #1E6E61;
display: flex;
align-items: center;
justify-content: center;
color: #1E6E61;
font-weight: 700;
margin-bottom: 36px;
}
.title {
font-size: 72px;
line-height: 84px;
color: #1A1A1A;
font-weight: 700;
margin: 14px 0 22px 0;
}
.subtitle {
font-size: 36px;
line-height: 52px;
color: #5F6A6A;
max-width: 930px;
}
.section-title {
margin-top: 56px;
font-size: 38px;
color: #2E3333;
font-weight: 700;
}
.fields-row {
display: flex;
gap: 40px;
margin-top: 30px;
}
.field {
flex: 1;
}
.label {
font-size: 30px;
color: #5F6A6A;
margin-bottom: 12px;
}
.input-box {
height: 160px;
border: 2px solid #D2D7D6;
border-radius: 18px;
background: #FFFFFF;
display: flex;
align-items: center;
padding: 0 34px;
font-size: 56px;
color: #1A1A1A;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
}
.full-field { margin-top: 36px; }
.dropdown {
position: relative;
width: 960px;
}
.dropdown .input-box { justify-content: space-between; }
.chev {
width: 36px;
height: 36px;
margin-left: 20px;
}
.hint {
margin-top: 26px;
font-size: 34px;
line-height: 48px;
color: #6A7573;
max-width: 960px;
}
/* Bottom actions */
.actions {
position: absolute;
left: 60px;
right: 60px;
bottom: 160px;
display: flex;
align-items: center;
justify-content: space-between;
}
.link-exit {
font-size: 44px;
color: #1E6E61;
font-weight: 700;
}
.btn-primary {
background: #1E6E61;
color: #FFFFFF;
font-size: 44px;
font-weight: 700;
padding: 34px 46px;
border-radius: 72px;
min-width: 520px;
text-align: center;
box-shadow: 0 6px 16px rgba(30, 110, 97, 0.25);
}
/* Gesture bar */
.gesture {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
width: 500px;
height: 16px;
background: #7B7B7B;
border-radius: 10px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>10:03</div>
<div class="status-icons">
<!-- Simple inline SVG icons -->
<svg class="status-icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="#4C5A57"></circle>
</svg>
<svg class="status-icon" viewBox="0 0 24 24">
<path d="M2 14c4-4 8-6 10-6s6 2 10 6" stroke="#4C5A57" stroke-width="3" fill="none" stroke-linecap="round"></path>
<circle cx="12" cy="14" r="3" fill="#4C5A57"></circle>
</svg>
<svg class="status-icon" viewBox="0 0 24 24">
<rect x="2" y="6" width="18" height="12" rx="3" stroke="#4C5A57" stroke-width="3" fill="none"></rect>
<rect x="4" y="8" width="12" height="8" fill="#4C5A57"></rect>
</svg>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="avatar">👤</div>
<div class="title">Add Fitbit profile info</div>
<div class="subtitle">
Your profile info helps personalize some metrics, like stride length and speed. To choose who sees this info, go to sharing settings in your Account &gt; Social &amp; Sharing &gt; Privacy.
</div>
<div class="section-title">Your profile info</div>
<div class="fields-row">
<div class="field">
<div class="label">Height</div>
<div class="input-box">172 cm</div>
</div>
<div class="field">
<div class="label">Weight</div>
<div class="input-box">60 kg</div>
</div>
</div>
<div class="full-field">
<div class="label">Sex</div>
<div class="dropdown">
<div class="input-box">
<div>Female</div>
<svg class="chev" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#6A7573" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
</div>
<div class="hint">
Fitbit uses sex to calculate metrics like calories burned, and to provide reference points you can use for comparison
</div>
</div>
<!-- Bottom actions -->
<div class="actions">
<div class="link-exit">Exit</div>
<div class="btn-primary">Save &amp; continue</div>
</div>
<!-- Gesture bar -->
<div class="gesture"></div>
</div>
</body>
</html>