File size: 6,526 Bytes
fa881a6 | 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 | <html>
<head>
<meta charset="UTF-8">
<title>Passwords & accounts UI</title>
<style>
body { margin:0; padding:0; background:transparent; font-family: Roboto, Arial, sans-serif; }
#render-target {
width:1080px; height:2400px;
position:relative; overflow:hidden;
background:#F3F5EF;
color:#1f1f1f;
}
/* Top bars */
.status-bar {
position:absolute; top:0; left:0; width:100%; height:100px;
display:flex; align-items:center; justify-content:space-between;
padding:0 40px; color:#3f3f3f; font-size:36px;
}
.status-right { display:flex; align-items:center; gap:28px; }
.status-dot { width:14px; height:14px; background:#6b6b6b; border-radius:50%; }
.status-icon {
width:28px; height:28px; border:2px solid #6b6b6b; border-radius:6px;
}
.app-bar {
position:absolute; top:100px; left:0; width:100%; height:140px;
display:flex; align-items:center;
padding:0 30px; border-bottom:1px solid #e4e4e4;
background:transparent;
}
.back-btn {
width:88px; height:88px; display:flex; align-items:center; justify-content:center;
margin-right:18px;
}
.app-title { font-size:54px; font-weight:600; letter-spacing:0.2px; }
/* Content */
.content { position:absolute; top:240px; left:0; right:0; bottom:0; overflow:hidden; }
.section-label {
font-size:40px; color:#2E7D32; margin:26px 40px 6px;
}
.item { display:flex; align-items:center; padding:28px 40px; }
.icon {
width:86px; height:86px; border-radius:50%;
margin-right:28px;
box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}
.icon.adobe { background:#FF6F61; }
.icon.airbnb { background:#FF8A80; }
.icon.duo { background:#8BC34A; }
.icon.notes { background:#9CC9FF; }
.icon.guest { background:#C7C7FF; }
.icon.pinterest { background:#EF5350; }
.icon.trip { background:#8EE08E; }
.text { display:flex; flex-direction:column; }
.title { font-size:44px; line-height:56px; }
.subtitle { font-size:32px; color:#6b6b6b; }
.divider { height:1px; background:#e7e7e7; margin:0 40px; }
.add-row { display:flex; align-items:center; padding:34px 40px; }
.plus {
width:70px; height:70px; border-radius:18px; border:2px solid #9e9e9e;
display:flex; align-items:center; justify-content:center; color:#5f5f5f; font-size:48px; margin-right:26px;
background:#fff;
}
.add-text { font-size:44px; }
/* Sync card */
.sync-card {
position:absolute; left:0; bottom:170px; width:100%;
padding:28px 40px 20px; border-top:1px solid #dadada;
background:transparent;
}
.sync-row { display:flex; align-items:center; justify-content:space-between; }
.sync-title { font-size:44px; }
.sync-sub { font-size:32px; color:#6b6b6b; margin-top:10px; }
.switch {
width:168px; height:88px; border-radius:44px; background:#9e9e9e;
position:relative;
}
.switch::after {
content:""; width:76px; height:76px; border-radius:38px; background:#ffffff;
position:absolute; top:6px; left:8px; box-shadow:0 2px 6px rgba(0,0,0,0.15);
}
/* Bottom navigation pill */
.nav-pill {
position:absolute; bottom:72px; left:50%;
transform:translateX(-50%);
width:480px; height:12px; background:#BDBDBD; border-radius:6px;
}
/* Small labels inside icons for clarity */
.icon-label {
width:100%; height:100%; display:flex; align-items:center; justify-content:center;
color:#ffffff; font-size:30px; font-weight:600;
}
/* Simple inline svg styling */
svg { display:block; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>9:58</div>
<div class="status-right">
<div class="status-dot"></div>
<div class="status-icon"></div>
<div class="status-icon" style="border-radius:50%"></div>
<div class="status-dot"></div>
<div class="status-icon" style="width:34px; height:20px; border-radius:4px"></div>
</div>
</div>
<!-- App Bar -->
<div class="app-bar">
<div class="back-btn">
<svg width="48" height="48" viewBox="0 0 48 48">
<path d="M30 8 L14 24 L30 40" stroke="#2f2f2f" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<div class="app-title">Passwords & accounts</div>
</div>
<!-- Content List -->
<div class="content">
<div class="section-label">Accounts for Owner</div>
<div class="item">
<div class="icon adobe"><div class="icon-label">A</div></div>
<div class="text">
<div class="title">dbwscratch.test.id2@gmail.com</div>
<div class="subtitle">Adobe</div>
</div>
</div>
<div class="item">
<div class="icon airbnb"><div class="icon-label">Air</div></div>
<div class="text">
<div class="title">dbwscratch.test.id2@gmail.com</div>
<div class="subtitle">Airbnb</div>
</div>
</div>
<div class="item">
<div class="icon duo"><div class="icon-label">D</div></div>
<div class="text">
<div class="title">Duolingo</div>
<div class="subtitle">Duolingo</div>
</div>
</div>
<div class="item">
<div class="icon notes"><div class="icon-label">✎</div></div>
<div class="text">
<div class="title">note</div>
<div class="subtitle">Easy Notes</div>
</div>
</div>
<div class="item">
<div class="icon guest"><div class="icon-label">G</div></div>
<div class="text">
<div class="title">Guest</div>
<div class="subtitle">LMS Applications</div>
</div>
</div>
<div class="item">
<div class="icon pinterest"><div class="icon-label">P</div></div>
<div class="text">
<div class="title">Pinterest</div>
<div class="subtitle">Pinterest</div>
</div>
</div>
<div class="item">
<div class="icon trip"><div class="icon-label">T</div></div>
<div class="text">
<div class="title">Cerebra R</div>
<div class="subtitle">Tripadvisor</div>
</div>
</div>
<div class="add-row">
<div class="plus">+</div>
<div class="add-text">Add account</div>
</div>
<!-- Sync setting card -->
<div class="sync-card">
<div class="sync-row">
<div>
<div class="sync-title">Automatically sync app data</div>
<div class="sync-sub">Let apps refresh data automatically</div>
</div>
<div class="switch"></div>
</div>
</div>
</div>
<div class="nav-pill"></div>
</div>
</body>
</html> |