File size: 4,133 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 | <html>
<head>
<meta charset="UTF-8">
<title>Fitbit Onboarding Modal</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(180deg, #3d7f86 0%, #2c6f76 35%, #1e6a71 65%, #115e65 100%);
color:#ffffff;
}
/* Status bar */
.status-bar {
position:absolute; top:0; left:0; width:100%; height:140px;
background:#7a7a7a; color:#fff;
display:flex; align-items:center; justify-content:space-between;
padding:0 40px; box-sizing:border-box;
}
.status-left { font-size:42px; font-weight:600; }
.status-right { display:flex; gap:28px; align-items:center; }
.dot { width:18px; height:18px; background:#fff; border-radius:50%; opacity:0.9; }
.icon-wifi, .icon-battery {
width:44px; height:44px;
}
.icon-wifi svg, .icon-battery svg { width:100%; height:100%; fill:#fff; }
/* Headline */
.headline {
position:absolute; top:280px; width:100%; text-align:center;
font-size:100px; font-weight:700; letter-spacing:1px;
}
.subhead {
position:absolute; top:410px; width:100%; text-align:center;
font-size:40px; color:#a7d0d2;
}
/* Phone image placeholder */
.phone-shot {
position:absolute; left:120px; top:600px;
width:840px; height:1110px;
background:#E0E0E0; border:1px solid #BDBDBD; border-radius:34px;
display:flex; justify-content:center; align-items:center;
color:#555; font-size:42px; text-align:center; padding:20px; box-sizing:border-box;
box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
/* Modal dialog */
.modal {
position:absolute; left:90px; top:940px;
width:900px; background:#fff; color:#222;
border-radius:16px; box-shadow:0 30px 80px rgba(0,0,0,0.5);
padding:60px 56px 40px; box-sizing:border-box;
}
.modal p {
font-size:46px; line-height:64px; margin:0 0 24px 0; color:#333;
}
.modal .ok {
position:absolute; right:48px; bottom:36px;
color:#e06b86; font-weight:700; font-size:46px;
}
/* Bottom buttons */
.bottom-area { position:absolute; left:0; bottom:160px; width:100%; text-align:center; }
.cta {
width:900px; margin:0 auto 24px; padding:34px 40px; box-sizing:border-box;
border-radius:60px; font-size:44px; letter-spacing:1px;
}
.cta.light { background:rgba(255,255,255,0.18); color:#d7eef0; }
.cta.dark { background:rgba(0,0,0,0.35); color:#d7eef0; }
/* Gesture bar */
.gesture {
position:absolute; left:50%; transform:translateX(-50%);
bottom:60px; width:320px; height:20px; background:#f1f1f1; border-radius:10px; opacity:0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">10:20</div>
<div class="status-right">
<div style="font-size:28px; opacity:0.9;">Calm</div>
<div class="dot"></div>
<div class="icon-wifi">
<svg viewBox="0 0 24 24"><path d="M12 18.5c.9 0 1.6.7 1.6 1.5S12.9 21.5 12 21.5s-1.6-.7-1.6-1.5.7-1.5 1.6-1.5zm-5.6-5c3.2-2.9 8.5-2.9 11.2 0l-1.6 1.6c-2.3-2-5.7-2-8 0L6.4 13.5zm-3.4-3.4C7.2 5.4 16.8 5.4 21 10.1l-1.7 1.7C15 8 9 8 4.7 11.8L3 10.1z"/></svg>
</div>
<div class="icon-battery">
<svg viewBox="0 0 24 24"><path d="M16 7h2v2h2v6h-2v2h-2v-2H4V9h12V7zM6 11v4h8v-4H6z"/></svg>
</div>
</div>
</div>
<!-- Headline and subhead -->
<div class="headline">Nice.</div>
<div class="subhead">You are now on your way to better health.</div>
<!-- Phone image placeholder -->
<div class="phone-shot">[IMG: Phone showing Fitbit app dashboard]</div>
<!-- Modal dialog -->
<div class="modal">
<p>Tracking activity using this mobile device may impact your battery life. You can log out of the app at any time to stop tracking activity</p>
<div class="ok">OK</div>
</div>
<!-- Bottom CTAs -->
<div class="bottom-area">
<div class="cta light">SEE WHAT FITBIT TRACKERS CAN DO</div>
<div class="cta dark">SET UP YOUR PHONE</div>
</div>
<div class="gesture"></div>
</div>
</body>
</html> |