← back to Hormuzy
mockups/088-darkmode-magazine.html
212 lines
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>dark-mode-editorial — Four Horsemen Studio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;600&display=swap">
<style>
html, body {
margin: 0;
padding: 0;
font-family: 'Inter', sans-serif;
color: #fdfaf0;
background-color: #0a0a0a;
height: 100%;
width: 100%;
overflow-x: hidden;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 32px;
background-color: #1a1a1a;
border-bottom: 1px solid #333;
}
header h1 {
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
margin: 0;
}
.project-picker, .status-indicator {
font-family: 'Inter', sans-serif;
font-size: 0.9rem;
}
.project-picker {
position: relative;
}
.project-picker select {
background-color: #0a0a0a;
color: #fdfaf0;
border: 1px solid #333;
padding: 4px 8px;
font-size: 0.9rem;
appearance: none;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path fill='%23fdfaf0' d='M3 3L5 7L7 3'/></svg>");
background-repeat: no-repeat;
background-position: right 8px center;
}
.status-indicator {
padding: 4px 8px;
background-color: #0a0a0a;
border: 1px solid #333;
border-radius: 4px;
}
.status-indicator.running::after {
content: "running";
color: #d4af37;
}
.main {
display: flex;
flex: 1;
overflow: hidden;
}
.chat-pane {
width: 40%;
background-color: #0a0a0a;
display: flex;
flex-direction: column;
padding: 24px;
overflow-y: auto;
}
.chat-log {
flex: 1;
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 24px;
}
.message.user {
align-self: flex-end;
background-color: #a83232;
color: #fdfaf0;
padding: 12px 16px;
border-radius: 8px;
max-width: 70%;
}
.message.system {
align-self: flex-start;
background-color: #1a1a1a;
color: #d4af37;
padding: 12px 16px;
border-radius: 8px;
max-width: 70%;
}
.chat-input {
display: flex;
gap: 8px;
}
.chat-input input {
flex: 1;
padding: 8px;
font-size: 1rem;
background-color: #0a0a0a;
border: 1px solid #333;
color: #fdfaf0;
}
.chat-input button {
padding: 8px 16px;
background-color: #d4af37;
color: #0a0a0a;
border: none;
font-weight: 600;
border-radius: 4px;
cursor: pointer;
}
.panels {
width: 60%;
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr 1fr;
gap: 24px;
padding: 24px;
overflow-y: auto;
}
.panel {
background-color: #0a0a0a;
border: 1px solid #1a1a1a;
border-radius: 8px;
display: flex;
flex-direction: column;
padding: 16px;
}
.panel-header {
font-family: 'Playfair Display', serif;
font-size: 1.2rem;
margin-bottom: 12px;
color: #d4af37;
}
.panel-body {
font-size: 0.95rem;
line-height: 1.6;
color: #fdfaf0;
}
.panel-body code {
color: #a83232;
background-color: #1a1a1a;
padding: 2px 4px;
border-radius: 4px;
}
</style>
</head>
<body>
<header>
<h1>Four Horsemen</h1>
<div>
<div class="project-picker">
<select>
<option value="project1">Hormuz Protocol</option>
<option value="project2">Oxidized Typologies</option>
<option value="project3">Linguistic Absinthe</option>
</select>
</div>
<div class="status-indicator idle">idle</div>
</div>
</header>
<div class="main">
<div class="chat-pane">
<div class="chat-log">
<div class="message user">/run-topic: "The Semiotics of Absinthe"</div>
<div class="message system">Parsing lexical constructs... Establishing visual metaphors for laudanum and green flame.</div>
<div class="message user">/stampede: "Typography as a weapon of seduction"</div>
<div class="message system">Engaging typeface agitators. Expect 37% more grotesques, 15% fewer serifs.</div>
</div>
<div class="chat-input">
<input type="text" placeholder="Type command or message..." />
<button>→</button>
</div>
</div>
<div class="panels">
<div class="panel">
<div class="panel-header">Preview</div>
<div class="panel-body">
Mockup rendering of <code>/run-topic</code> output. A single page with 12pt leading, 30% opacity halftones, and a 1920s newspaper column layout. The absinthe green is a #2e7d32, but we're using a more spectral variant.
</div>
</div>
<div class="panel">
<div class="panel-header">Paper</div>
<div class="panel-body">
Notes on the <code>/stampede</code> directive: "Typography as a weapon of seduction" requires a typeface with aggressive serifs and a 20% increase in x-height. Current candidates: Berling, Kabel, and a 1930s propaganda font from the USSR.
</div>
</div>
<div class="panel">
<div class="panel-header">Figma</div>
<div class="panel-body">
Component library for the <code>/run-topic</code> visual metaphors. Includes a laudanum bottle icon (vector), a green flame SVG, and a 1920s newspaper texture. All assets are in 300dpi, with CMYK profiles for print.
</div>
</div>
<div class="panel">
<div class="panel-header">Canva</div>
<div class="panel-body">
Template for "The Semiotics of Absinthe" poster. Uses a 3:2 aspect ratio, a 1920s newspaper column layout, and a green flame gradient. The text is in Playfair Display, with a 12pt leading and 30% opacity halftones.
</div>
</div>
</div>
</div>
</body>
</html>