File size: 5,077 Bytes
98687c3 | 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 | <html>
<head>
<meta charset="UTF-8">
<title>Fitbit Profile Info</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: "Helvetica Neue", Arial, sans-serif; }
#render-target {
width:1080px; height:2400px;
position:relative; overflow:hidden;
background:#EFF2EF;
color:#222;
}
/* Status bar */
.status-bar{
position:absolute; top:0; left:0; right:0;
height:100px;
padding:0 40px;
display:flex; align-items:center; justify-content:space-between;
color:#222;
font-weight:600;
letter-spacing:1px;
}
.status-left{ display:flex; align-items:center; gap:20px; }
.status-icons{ display:flex; align-items:center; gap:22px; }
.sb-dot{ width:18px; height:18px; border-radius:50%; background:#1f6d5c; opacity:.85; }
.wifi{ width:32px; height:22px; border:3px solid #222; border-radius:6px; position:relative; }
.wifi:after{ content:""; position:absolute; width:10px; height:10px; right:-16px; top:-6px; border:3px solid #222; border-top:none; border-right:none; transform:rotate(45deg); border-radius:2px; }
.battery{ width:54px; height:26px; border:3px solid #222; border-radius:4px; position:relative; }
.battery:after{ content:""; position:absolute; right:-8px; top:6px; width:6px; height:14px; background:#222; border-radius:1px; }
.battery .fill{ position:absolute; left:4px; top:4px; bottom:4px; right:18px; background:#222; border-radius:2px; }
/* Content */
.content{
position:absolute; left:60px; right:60px; top:140px; bottom:0;
overflow:hidden;
}
.avatar{
width:120px; height:120px; border-radius:50%;
border:10px solid #226e61;
display:flex; align-items:center; justify-content:center;
color:#226e61; font-weight:800; font-size:52px;
}
.title{
margin-top:30px;
font-size:74px; line-height:84px; font-weight:700;
}
.subtitle{
margin-top:36px; color:#5a6a64; font-size:34px; line-height:52px;
max-width:920px;
}
.section-title{
margin-top:70px; font-size:40px; font-weight:700; color:#22332f;
}
.form-row{
margin-top:30px;
display:flex; gap:40px; flex-wrap:wrap;
}
.field{
flex:1 1 0;
}
.label{
color:#537068; font-size:30px; margin:16px 6px;
}
.input{
background:#fff; border:2px solid #cfd8d5; border-radius:20px;
height:150px; display:flex; align-items:center; padding:0 30px;
font-size:52px; color:#1d2a28;
}
.dropdown .input{ justify-content:space-between; }
.help{
margin-top:36px; color:#6f7e79; font-size:34px; line-height:50px; max-width:930px;
}
/* Footer actions */
.footer{
position:absolute; left:0; right:0; bottom:40px;
display:flex; align-items:center; justify-content:space-between;
padding:0 60px;
}
.exit{
color:#1f6d5c; font-size:42px; font-weight:600;
}
.btn{
background:#226e61; color:#fff; font-size:44px; font-weight:700;
padding:0 56px; height:140px; border-radius:90px;
display:flex; align-items:center; justify-content:center;
min-width:620px; box-shadow:0 6px 12px rgba(0,0,0,0.08);
}
/* Simple dropdown caret */
.caret{
width:28px; height:28px; margin-left:20px;
}
.caret svg{ width:28px; height:28px; fill:#2b3a37; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div style="font-size:40px;">10:08</div>
<div class="status-icons">
<div class="sb-dot" title="silent"></div>
<div class="sb-dot" style="background:#9bb7ad;" title="notifications"></div>
<div class="sb-dot" style="background:#c6d6d1;" title="indicator"></div>
</div>
</div>
<div class="status-icons">
<div class="wifi"></div>
<div class="battery"><div class="fill"></div></div>
</div>
</div>
<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 > Social & Sharing > Privacy.
</div>
<div class="section-title">Your profile info</div>
<div class="form-row">
<div class="field">
<div class="label">Height</div>
<div class="input">165 cm</div>
</div>
<div class="field">
<div class="label">Weight</div>
<div class="input">74 kg</div>
</div>
</div>
<div class="field" style="margin-top:40px;">
<div class="label">Sex</div>
<div class="input dropdown">
<div>Female</div>
<div class="caret">
<svg viewBox="0 0 24 24"><path d="M7 9l5 5 5-5z"/></svg>
</div>
</div>
</div>
<div class="help">
Fitbit uses sex to calculate metrics like calories burned, and to provide reference points
you can use for comparison
</div>
</div>
<div class="footer">
<div class="exit">Exit</div>
<div class="btn">Save & continue</div>
</div>
</div>
</body>
</html> |