mirror of
https://github.com/tiennm99/ai-coding-workflow-labs.git
synced 2026-09-15 04:20:32 +00:00
- Define 3 personality-to-coffee pairings (Zen Minimalist, Night Owl, Social Butterfly) - Add percentage-based result display spec - Add 5 pop culture quiz questions with personality mappings - Generate 4 distinct style preview HTML files for visual direction - Document warm/cozy + Claude homepage aesthetic as chosen style
78 lines
2.5 KiB
HTML
78 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Style 2 - Minimal & Clean</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
min-height: 100vh;
|
|
background: #fafafa;
|
|
display: flex; align-items: center; justify-content: center;
|
|
font-family: 'Inter', sans-serif;
|
|
padding: 20px;
|
|
}
|
|
.card {
|
|
background: white;
|
|
border-radius: 4px;
|
|
padding: 56px 48px;
|
|
max-width: 560px;
|
|
width: 100%;
|
|
border: 1px solid #e8e8e8;
|
|
}
|
|
.step {
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
letter-spacing: 2px;
|
|
color: #aaa;
|
|
text-transform: uppercase;
|
|
margin-bottom: 32px;
|
|
}
|
|
h1 {
|
|
font-size: 28px;
|
|
font-weight: 300;
|
|
color: #111;
|
|
margin-bottom: 48px;
|
|
line-height: 1.4;
|
|
}
|
|
.option {
|
|
border-bottom: 1px solid #f0f0f0;
|
|
padding: 18px 0;
|
|
cursor: pointer;
|
|
font-size: 15px;
|
|
color: #444;
|
|
font-weight: 400;
|
|
display: flex; align-items: center; justify-content: space-between;
|
|
transition: color 0.15s;
|
|
}
|
|
.option:first-of-type { border-top: 1px solid #f0f0f0; }
|
|
.option:hover { color: #111; }
|
|
.option.selected { color: #111; font-weight: 500; }
|
|
.option .arrow { color: #ddd; font-size: 18px; }
|
|
.option.selected .arrow { color: #111; }
|
|
.progress-bar {
|
|
height: 2px;
|
|
background: #f0f0f0;
|
|
margin-bottom: 48px;
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
}
|
|
.progress-fill { height: 100%; width: 40%; background: #111; border-radius: 2px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<div class="step">2 / 5</div>
|
|
<div class="progress-bar"><div class="progress-fill"></div></div>
|
|
<h1>It's Friday night. What are you watching?</h1>
|
|
<div class="option selected">An action thriller that keeps you on edge <span class="arrow">→</span></div>
|
|
<div class="option">A slow-burn documentary about nature <span class="arrow">→</span></div>
|
|
<div class="option">Whatever your friends want to watch together <span class="arrow">→</span></div>
|
|
<div class="option">A cult classic you've seen 10 times, starting at midnight <span class="arrow">→</span></div>
|
|
</div>
|
|
<div style="position:fixed;bottom:16px;left:50%;transform:translateX(-50%);background:rgba(0,0,0,0.7);color:white;padding:8px 16px;border-radius:999px;font-size:13px;font-family:sans-serif;">Style 2 — Minimal & Clean</div>
|
|
</body>
|
|
</html>
|