← back to Model Arena
data/artifacts/1cc50031c12f/qwen25-7b.html
134 lines
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grandmillennial Lookbook</title>
<style>
:root {
--bg: #0d0d0f;
--surface: #17171c;
--text: #f5f2ea;
--muted: #8a8578;
--accent: #c9a961;
--line: 1px solid var(--muted);
--shadow: 0 8px 24px rgba(0,0,0,.12), hover 0 16px 48px rgba(0,0,0,.18);
--ease: cubic-bezier(.22,1,.36,1) both;
}
body {
margin: 0;
padding: 0;
font-family: 'Didot', 'Bodoni MT', Georgia, serif;
background-color: var(--bg);
color: var(--text);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
header {
position: fixed;
left: 0;
top: 0;
width: 100%;
padding: 24px 64px;
background-color: var(--surface);
color: var(--text);
text-align: left;
display: flex;
align-items: center;
}
header span {
font-size: 50px;
letter-spacing: .18em;
margin-right: auto;
}
.carousel {
position: relative;
width: 70%;
max-width: 960px;
height: 80vh;
overflow-x: scroll;
padding-top: 24px;
scrollbar-width: none; /* Hide scrollbar */
}
.slide {
display: inline-block;
margin-right: 32px;
width: 100%;
max-width: 500px;
height: 80vh;
border-radius: 14px;
background-color: var(--surface);
padding: 32px;
box-shadow: var(--shadow);
}
.swatch {
width: 100%;
height: 200px;
margin-bottom: 16px;
border-radius: 8px;
background-color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: white;
}
.vignette {
width: 50%;
height: 100%;
margin-right: -20px;
background-color: rgba(255, 255, 255, 0.1);
display: flex;
align-items: center;
}
.vignette p {
font-size: 24px;
color: var(--text);
margin-bottom: 8px;
}
.notes {
font-size: 16px;
line-height: 1.5;
}
footer {
text-align: center;
padding: 32px;
background-color: var(--surface);
color: var(--text);
}
</style>
</head>
<body>
<header>
<span>DESIGNER WALLCOVERINGS</span>
</header>
<div class="carousel">
<div class="slide">
<div class="swatch"></div>
<div class="vignette">
<p>Elegant Living Room</p>
<p class="notes">Soft pastels and warm neutrals create a serene atmosphere.</p>
</div>
</div>
<div class="slide">
<div class="swatch"></div>
<div class="vignette">
<p>Classic Dining Room</p>
<p class="notes">Rich textures and deep woods define luxury dining spaces.</p>
</div>
</div>
<div class="slide">
<div class="swatch"></div>
<div class="vignette">
<p>Futuristic Kitchen</p>
<p class="notes">Bold colors and geometric patterns for a modern twist.</p>
</div>
</div>
<footer>
<a href="#" style="--bg:#c9a961;--text:white;">Explore More</a>
</footer>
</div>
</body>
</html>