File size: 4,305 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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | <html>
<head>
<meta charset="utf-8">
<title>Fitbit Onboarding Mock</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: linear-gradient(to bottom, #2a7f86 0%, #3e9195 40%, #5fb0b2 75%, #78c0c1 100%);
}
/* Status bar */
.status-bar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 120px;
background: #ffffff;
color: #222;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 36px;
box-sizing: border-box;
font-weight: 600;
}
.status-left { font-size: 44px; letter-spacing: 1px; }
.status-right {
display: flex; align-items: center; gap: 28px;
}
.icon {
width: 44px; height: 44px;
}
/* simple icons */
.icon-wifi svg, .icon-battery svg { width: 100%; height: 100%; }
.icon-wifi path { fill: #444; }
.icon-battery rect, .icon-battery path { fill: #444; }
/* Headings */
.heading {
position: absolute;
top: 210px;
width: 100%;
text-align: center;
font-size: 110px;
color: #1d2b2f;
font-weight: 700;
}
.subheading {
position: absolute;
top: 350px;
width: 100%;
text-align: center;
font-size: 46px;
color: rgba(0,0,0,0.45);
letter-spacing: 0.3px;
}
/* Phone illustration placeholder */
.phone-wrapper {
position: absolute;
top: 560px;
left: 50%;
transform: translateX(-50%);
width: 860px;
height: 1220px;
border-radius: 60px;
background: #111;
box-shadow: 0 28px 60px rgba(0,0,0,0.35);
display: flex;
align-items: center;
justify-content: center;
padding: 40px;
box-sizing: border-box;
}
.phone-screen {
width: 100%;
height: 100%;
border-radius: 42px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 42px;
text-align: center;
line-height: 1.3;
}
/* Buttons */
.buttons {
position: absolute;
bottom: 300px;
left: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
gap: 36px;
}
.btn {
width: 920px;
height: 150px;
border-radius: 90px;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
letter-spacing: 1px;
color: #ffffff;
box-shadow: 0 14px 26px rgba(0,0,0,0.25);
text-transform: uppercase;
}
.btn.light {
background: #a9d9d8;
color: #0f3f42;
box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}
.btn.dark {
background: #2b6e73;
}
/* Swipe indicator */
.swipe {
position: absolute;
bottom: 44px;
left: 50%;
transform: translateX(-50%);
width: 220px;
height: 16px;
background: #bdbdbd;
border-radius: 10px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top status bar -->
<div class="status-bar">
<div class="status-left">10:19</div>
<div class="status-right">
<!-- Simple placeholder icons -->
<div class="icon icon-wifi">
<svg viewBox="0 0 24 24">
<path d="M12 18.5c.9 0 1.6.7 1.6 1.6s-.7 1.6-1.6 1.6-1.6-.7-1.6-1.6.7-1.6 1.6-1.6zm-5.5-5.1c4-3.8 10.6-3.8 14.6 0l-2 2c-3-2.8-7.6-2.8-10.6 0l-2-2zm-3.4-3.6c6.2-5.9 16.4-5.9 22.6 0l-2.1 2.1c-4.9-4.7-13.5-4.7-18.4 0L3.1 9.8z"/>
</svg>
</div>
<div class="icon icon-battery">
<svg viewBox="0 0 26 24">
<rect x="2" y="6" width="18" height="12" rx="2"></rect>
<path d="M22 9h2v6h-2z"></path>
</svg>
</div>
</div>
</div>
<!-- Headings -->
<div class="heading">Nice.</div>
<div class="subheading">You are now on your way to better health.</div>
<!-- Center phone image placeholder -->
<div class="phone-wrapper">
<div class="phone-screen">[IMG: Phone with Fitbit dashboard]</div>
</div>
<!-- Buttons -->
<div class="buttons">
<div class="btn light">SEE WHAT FITBIT TRACKERS CAN DO</div>
<div class="btn dark">SET UP YOUR PHONE</div>
</div>
<!-- Bottom swipe indicator -->
<div class="swipe"></div>
</div>
</body>
</html> |