AndroidCode / code /10145 /10145_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
ff1f000 verified
raw
history blame
5.51 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=1080, initial-scale=1.0" />
<title>Watchlist UI</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #000000;
color: #ffffff;
}
/* General helpers */
.row {
display: flex;
align-items: center;
}
.space-between {
justify-content: space-between;
}
.muted {
color: #bdbdbd;
}
.divider {
height: 1px;
background: #2a2a2a;
width: 100%;
}
/* Header */
.header {
padding: 68px 36px 16px 36px;
}
.title-wrap {
display: flex;
align-items: center;
gap: 24px;
}
.title {
font-size: 64px;
font-weight: 700;
letter-spacing: 0.2px;
}
.circle-icon {
width: 96px;
height: 96px;
border-radius: 50%;
background: #1a1a1a;
display: inline-flex;
align-items: center;
justify-content: center;
}
.circle-icon.large {
width: 110px;
height: 110px;
}
.circle-icon svg {
fill: #ffffff;
}
/* Tabs & actions */
.tabs {
padding: 28px 36px 6px 36px;
display: flex;
gap: 80px;
align-items: flex-end;
}
.tab {
font-size: 40px;
color: #cfcfcf;
}
.tab.active {
color: #ffffff;
position: relative;
}
.tab.active::after {
content: "";
position: absolute;
left: 0;
bottom: -14px;
width: 120px;
height: 6px;
background: #e6e6e6;
border-radius: 6px;
}
.actions-bar {
padding: 22px 36px 10px 36px;
}
.link {
color: #2e7bf6;
font-size: 38px;
font-weight: 600;
}
.action-links {
display: flex;
gap: 36px;
}
/* Filter chips */
.chips {
padding: 26px 24px;
display: flex;
gap: 28px;
}
.chip {
padding: 22px 34px;
border: 2px solid #6d6d6d;
color: #ffffff;
border-radius: 999px;
font-size: 36px;
background: transparent;
display: inline-flex;
align-items: center;
white-space: nowrap;
}
/* Listing card */
.list-area {
padding: 24px 24px 0 24px;
}
.card {
padding: 26px 12px 26px 12px;
border-top: 2px solid #2a2a2a;
}
.card-content {
display: flex;
gap: 28px;
}
.thumb {
width: 360px;
height: 300px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
color: #757575;
display: flex;
align-items: center;
justify-content: center;
border-radius: 32px;
text-align: center;
font-size: 28px;
line-height: 1.3;
}
.details {
flex: 1;
min-width: 0;
}
.item-title {
font-size: 44px;
font-weight: 600;
margin-top: 8px;
margin-bottom: 22px;
}
.price-row {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.price {
font-size: 60px;
font-weight: 800;
}
.offer {
text-align: right;
color: #bfbfbf;
font-size: 32px;
line-height: 1.35;
padding-top: 8px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Header -->
<div class="header">
<div class="row space-between">
<div class="title-wrap">
<div class="circle-icon" aria-label="Menu">
<svg width="42" height="42" viewBox="0 0 24 24">
<rect x="3" y="6" width="18" height="2"></rect>
<rect x="3" y="11" width="18" height="2"></rect>
<rect x="3" y="16" width="18" height="2"></rect>
</svg>
</div>
<div class="title">Watchlist</div>
</div>
<div class="row" style="gap:18px;">
<div class="circle-icon large" aria-label="Search">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M15.5 14h-.79l-.28-.27a6 6 0 1 0-.71.71l.27.28v.79L20 19.5 19.5 20l-4-4zm-6 0a4.5 4.5 0 1 1 0-9 4.5 4.5 0 0 1 0 9z"></path>
</svg>
</div>
<div class="circle-icon large" aria-label="Cart">
<svg width="40" height="40" viewBox="0 0 24 24">
<path d="M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM7.2 6h12.2l-1.5 7H8.1L6.6 4H3v2h2.2l2 10h10.9l2-9h-2.1"></path>
</svg>
</div>
</div>
</div>
</div>
<!-- Tabs -->
<div class="tabs">
<div class="tab active">Active</div>
<div class="tab">Ended</div>
</div>
<!-- Find / Edit / Refine -->
<div class="actions-bar row space-between">
<div class="link">Find</div>
<div class="action-links">
<div class="link">Edit</div>
<div class="link">Refine</div>
</div>
</div>
<!-- Chips -->
<div class="chips">
<div class="chip">All Categories (1)</div>
<div class="chip">Digital Cameras (1)</div>
</div>
<div class="divider"></div>
<!-- Listing -->
<div class="list-area">
<div class="card">
<div class="card-content">
<div class="thumb">[IMG: Nikon camera listing photo]</div>
<div class="details">
<div class="item-title">Nikon d5500 camera with Lens And Bag. Barely Used</div>
<div class="price-row">
<div class="price">$385.00</div>
<div class="offer">
Or Best Offer<br />
29d 0h
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>