← back to Hormuzy
mockups/049-lighthouse-log.html
222 lines
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>lighthouse-keepers-log — Four Horsemen Studio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@700&family=Source+Serif+Pro:wght@400&display=swap">
<style>
html, body {
margin: 0;
padding: 0;
font-family: 'Source Serif Pro', serif;
background-color: #fdfaf0;
color: #0e2a47;
height: 100%;
width: 100%;
overflow: hidden;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 32px;
background: linear-gradient(to right, #1c4966, #0e2a47);
color: #fdfaf0;
font-family: 'Crimson Pro', serif;
font-size: 1.5rem;
position: relative;
}
header::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: #bf3922;
}
.brand {
font-weight: 700;
}
.project-picker {
padding: 8px 16px;
background: #7fb069;
border: 1px solid #bf3922;
border-radius: 4px;
color: #0e2a47;
font-size: 0.9rem;
}
.status {
padding: 6px 12px;
background: #7fb069;
border: 1px solid #bf3922;
border-radius: 4px;
font-size: 0.85rem;
}
.container {
display: flex;
flex: 1;
overflow: hidden;
}
.left-pane {
width: 40%;
background: #fdfaf0;
border-right: 1px solid #1c4966;
display: flex;
flex-direction: column;
}
.chat-log {
padding: 24px;
overflow-y: auto;
flex: 1;
display: flex;
flex-direction: column;
gap: 16px;
}
.chat-message {
display: flex;
flex-direction: column;
gap: 4px;
}
.chat-message.user {
align-self: flex-end;
}
.chat-message.system {
align-self: flex-start;
}
.chat-input {
padding: 16px;
border-top: 1px solid #1c4966;
display: flex;
gap: 8px;
}
.chat-input input {
flex: 1;
padding: 8px;
font-size: 1rem;
border: 1px solid #bf3922;
border-radius: 4px;
background: #fdfaf0;
color: #0e2a47;
}
.chat-input button {
padding: 8px 16px;
background: #7fb069;
border: 1px solid #bf3922;
border-radius: 4px;
color: #0e2a47;
font-weight: 600;
}
.right-pane {
width: 60%;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 16px;
padding: 24px;
}
.panel {
background: #0e2a47;
color: #fdfaf0;
padding: 20px;
border: 1px solid #7fb069;
border-radius: 6px;
display: flex;
flex-direction: column;
gap: 12px;
}
.panel-header {
font-family: 'Crimson Pro', serif;
font-size: 1.2rem;
color: #bf3922;
}
.panel-content {
font-size: 0.95rem;
line-height: 1.4;
}
</style>
</head>
<body>
<header>
<div class="brand">FOUR HORSEMEN</div>
<div>
<select class="project-picker">
<option value="1">Coastal Beacon Redesign</option>
<option value="2">Mist-Shrouded Logo</option>
<option value="3">Tide-Whispering UI</option>
</select>
<span class="status">idle</span>
</div>
</header>
<div class="container">
<div class="left-pane">
<div class="chat-log">
<div class="chat-message system">
<div>⚠️ lighthouse-keepers-log: topic /run-topic "tide patterns" initiated</div>
<div class="timestamp">17:42</div>
</div>
<div class="chat-message user">
<div>/stampede generate 3 variations of the beacon silhouette</div>
<div class="timestamp">17:43</div>
</div>
<div class="chat-message system">
<div>🌊 generating... the fog is thick, but the beacon holds</div>
<div class="timestamp">17:44</div>
</div>
<div class="chat-message user">
<div>/run-topic "nautical typography"</div>
<div class="timestamp">17:45</div>
</div>
</div>
<div class="chat-input">
<input type="text" placeholder="whisper to the log...">
<button>⏎</button>
</div>
</div>
<div class="right-pane">
<div class="panel">
<div class="panel-header">Preview</div>
<div class="panel-content">
<svg width="100%" height="100%" viewBox="0 0 100 100">
<rect width="100" height="100" fill="#1c4966"/>
<circle cx="50" cy="50" r="20" fill="#7fb069"/>
<path d="M20 20 L80 80 M20 80 L80 20" stroke="#bf3922" stroke-width="2"/>
</svg>
</div>
</div>
<div class="panel">
<div class="panel-header">Paper</div>
<div class="panel-content">
<div>📝 rough sketch: beacon silhouette</div>
<div>• 3 variations requested</div>
<div>• focus on negative space between light and fog</div>
<div>• ink splatters in the margins</div>
</div>
</div>
<div class="panel">
<div class="panel-header">Figma</div>
<div class="panel-content">
<div>draft: "tide-etched" icon set</div>
<div>• 12 icons in progress</div>
<div>• style: weathered brass, kerosene stains</div>
<div>• layers: 32</div>
</div>
</div>
<div class="panel">
<div class="panel-header">Canva</div>
<div class="panel-content">
<div>mock-up: "lighthouse-keepers-log" poster</div>
<div>• background: gradient from dusk to kerosene</div>
<div>• typography: Crimson Pro, 48pt</div>
<div>• placeholder: "the fog is a veil, not an obstacle"</div>
</div>
</div>
</div>
</div>
</body>
</html>