polygrapher / app /wallet-accent-style.html
dhruv575
Wallet Watch
071a1d8
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wallet Watch - Left Accent Bar Style</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #F3F4F6;
padding: 40px 20px;
min-height: 100vh;
}
.container {
max-width: 500px;
margin: 0 auto;
}
.email-preview {
background: #fff;
border-radius: 12px;
padding: 24px 20px;
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.section-header {
font-size: 18px;
font-weight: 700;
color: #111827;
padding-bottom: 8px;
border-bottom: 2px solid #2E5CFF;
margin-bottom: 16px;
}
/* Left Accent Bar Style */
.wallet-accent {
border-radius: 10px;
background: #fff;
border-left: 4px solid #2E5CFF;
padding: 16px 16px 16px 20px;
box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.wallet-accent-eyebrow {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #2E5CFF;
margin-bottom: 8px;
}
.wallet-accent-title {
font-size: 18px;
font-weight: 700;
color: #111827;
margin-bottom: 12px;
line-height: 1.3;
}
.wallet-accent-img {
width: 100%;
height: 160px;
background: linear-gradient(135deg, #F1F5F9 0%, #E2E8F0 100%);
border-radius: 8px;
margin-bottom: 12px;
}
.wallet-accent-desc {
font-size: 15px;
line-height: 1.55;
color: #374151;
margin-bottom: 14px;
}
.wallet-accent-btn {
font-size: 14px;
font-weight: 500;
color: #2E5CFF;
text-decoration: none;
}
.label {
text-align: center;
margin-top: 20px;
font-size: 12px;
color: #9CA3AF;
}
</style>
</head>
<body>
<div class="container">
<div class="email-preview">
<div class="section-header">Wallet Watch</div>
<div class="wallet-accent">
<div class="wallet-accent-title">Greenland</div>
<div class="wallet-accent-img"></div>
<div class="wallet-accent-desc">A new Polymarket user, @MaxVerstap, is risking $102,690.12 on Trump taking over Greenland this year. 5X return if he is right.</div>
<a href="#" class="wallet-accent-btn">View wallet →</a>
</div>
</div>
<div class="label">Left Accent Bar Style</div>
</div>
</body>
</html>