File size: 9,732 Bytes
67530d2 | 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 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | <html>
<head>
<meta charset="utf-8">
<title>Mail UI Mock</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:#121212; color:#fff;
}
/* Top purple app bar */
.appbar { position:absolute; left:0; top:0; width:100%; height:260px; background:#5B42C2; }
.status { height:110px; display:flex; align-items:center; padding:0 36px; color:#fff; font-size:32px; }
.status .icons { margin-left:auto; display:flex; gap:26px; align-items:center; }
.titlebar { height:150px; display:flex; align-items:center; padding:0 36px; color:#fff; }
.title { font-size:56px; font-weight:700; margin-left:20px; }
.titlebar .right { margin-left:auto; display:flex; gap:34px; align-items:center; }
/* List container */
.list { position:absolute; left:0; top:260px; width:100%; bottom:200px; overflow:hidden; }
.email { display:flex; padding:34px 40px; border-bottom:1px solid rgba(255,255,255,0.06); background:#0e0e0e; position:relative; }
.email.alt { background:#111111; }
.email.highlight { background:#2e2e2e; }
.left-dot { width:18px; height:18px; background:#3DA5FF; border-radius:50%; margin-right:26px; margin-top:10px; }
.content { flex:1; }
.top-row { display:flex; align-items:center; }
.sender { font-size:42px; font-weight:800; }
.subject { font-size:36px; font-weight:700; color:#ffffff; margin-top:10px; }
.snippet { font-size:32px; color:#b9b9b9; margin-top:8px; }
.time { position:absolute; right:40px; top:40px; color:#b9b9b9; font-size:30px; }
/* Right side star icon */
.star { margin-left:auto; width:48px; height:48px; }
.star svg { width:48px; height:48px; fill:none; stroke:#cfcfcf; stroke-width:4; }
/* Bottom nav */
.bottom { position:absolute; left:0; right:0; bottom:0; height:200px; background:#1a1a1a; border-top:1px solid rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:space-around; padding:0 30px; }
.nav-icon { width:90px; height:90px; display:flex; align-items:center; justify-content:center; }
.nav-icon svg { width:72px; height:72px; fill:none; stroke:#e0e0e0; stroke-width:4; }
.compose { width:120px; height:120px; border-radius:26px; background:#2a2a2a; display:flex; align-items:center; justify-content:center; }
.home-indicator { position:absolute; left:50%; transform:translateX(-50%); bottom:20px; width:500px; height:16px; background:#eaeaea; border-radius:10px; opacity:0.85; }
/* Small utilities */
.hamburger svg, .search svg, .wave svg { width:52px; height:52px; stroke:#fff; fill:none; stroke-width:6; }
</style>
</head>
<body>
<div id="render-target">
<!-- Top App Bar -->
<div class="appbar">
<div class="status">
<div>12:32</div>
<div class="icons">
<!-- simple status dots -->
<svg width="28" height="28"><circle cx="14" cy="14" r="10" fill="#fff"/></svg>
<svg width="28" height="28"><circle cx="14" cy="14" r="10" fill="#fff" opacity="0.7"/></svg>
<svg width="28" height="28"><circle cx="14" cy="14" r="10" fill="#fff" opacity="0.5"/></svg>
<svg width="34" height="34"><rect x="6" y="6" width="22" height="22" fill="#fff"/></svg>
<svg width="34" height="34"><polygon points="6,30 28,30 28,10 6,20" fill="#fff"/></svg>
</div>
</div>
<div class="titlebar">
<!-- Hamburger -->
<div class="hamburger">
<svg viewBox="0 0 24 24">
<path d="M3 5h18M3 12h18M3 19h18"/>
</svg>
</div>
<div class="title">All Mail</div>
<div class="right">
<!-- Wave/Activity icon -->
<div class="wave">
<svg viewBox="0 0 24 24">
<path d="M2 12c3-6 5 6 8 0s5 6 12-2" />
</svg>
</div>
<!-- Search -->
<div class="search">
<svg viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7"></circle>
<path d="M21 21l-5.2-5.2"></path>
</svg>
</div>
</div>
</div>
</div>
<!-- Mail List -->
<div class="list">
<!-- Email 1 -->
<div class="email alt">
<div class="left-dot"></div>
<div class="content">
<div class="top-row">
<div class="sender">Raghav Himatsingka</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Secret 1 of Upcoming Masterclass For Your Child</div>
<div class="snippet">Sneak Preview of your upcoming Masterclass!</div>
</div>
<div class="time">11m</div>
</div>
<!-- Email 2 -->
<div class="email alt">
<div class="left-dot" style="background:#0000;"></div>
<div class="content">
<div class="top-row">
<div class="sender">Me & dbwscratch.test.id6</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Re: Working from office</div>
<div class="snippet">I Will come office from 1 sep 2023.</div>
</div>
<div class="time">1h</div>
</div>
<!-- Email 3 -->
<div class="email alt">
<div class="left-dot" style="background:#0000;"></div>
<div class="content">
<div class="top-row">
<div class="sender">Me & Cerebra</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">OFFICIAL WEEKEND PARTY</div>
<div class="snippet">Thanks a lot.</div>
</div>
<div class="time">2h</div>
</div>
<!-- Email 4 (highlight) -->
<div class="email highlight">
<div class="left-dot"></div>
<div class="content">
<div class="top-row">
<div class="sender">Glow Nurture</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Your baby on Day 302</div>
</div>
<div class="time">2h</div>
</div>
<!-- Email 5 -->
<div class="email alt">
<div class="left-dot" style="background:#0000;"></div>
<div class="content">
<div class="top-row">
<div class="sender">Cerebra Research</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Event organiser</div>
<div class="snippet">Hello, I am organising a small event on 14th August...</div>
</div>
<div class="time">2h</div>
</div>
<!-- Email 6 -->
<div class="email alt">
<div class="left-dot" style="background:#0000;"></div>
<div class="content">
<div class="top-row">
<div class="sender">Me to Cerebra</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Business meeting with the Clients</div>
<div class="snippet">We have a business meeting on August 30, 2023, s...</div>
</div>
<div class="time">2h</div>
</div>
<!-- Email 7 -->
<div class="email alt">
<div class="left-dot" style="background:#0000;"></div>
<div class="content">
<div class="top-row">
<div class="sender">Google</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Security alert</div>
<div class="snippet">Newton by CloudMagic was granted access to your...</div>
</div>
<div class="time">4h</div>
</div>
<!-- Email 8 -->
<div class="email alt">
<div class="left-dot" style="background:#0000;"></div>
<div class="content">
<div class="top-row">
<div class="sender">Webex</div>
<div class="star">
<svg viewBox="0 0 24 24"><path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"/></svg>
</div>
</div>
<div class="subject">Limited Spots. Unlimited Potential.</div>
</div>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom">
<div class="nav-icon">
<!-- inbox tray -->
<svg viewBox="0 0 24 24">
<path d="M3 4h18v10h-6l-3 3-3-3H3z"></path>
</svg>
</div>
<div class="nav-icon">
<!-- star -->
<svg viewBox="0 0 24 24">
<path d="M12 3l3 6 6 .9-4.5 4.3 1 6-5.5-3-5.5 3 1-6L3 9.9 9 9z"></path>
</svg>
</div>
<div class="nav-icon">
<!-- envelope -->
<svg viewBox="0 0 24 24">
<path d="M3 6h18v12H3z"></path>
<path d="M3 7l9 6 9-6"></path>
</svg>
</div>
<div class="nav-icon">
<!-- people / group -->
<svg viewBox="0 0 24 24">
<circle cx="9" cy="9" r="4"></circle>
<circle cx="17" cy="11" r="3"></circle>
<path d="M3 21c2-5 10-5 12 0M12 20c2-3 7-3 9 0"></path>
</svg>
</div>
<div class="compose">
<!-- pencil -->
<svg viewBox="0 0 24 24">
<path d="M4 20l4-1 10-10-3-3L5 16l-1 4z"></path>
<path d="M13 5l3 3"></path>
</svg>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |