← back to Hormuzy
mockups/094-beekeeper-log.html
204 lines
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>beekeeper-log-book — Four Horsemen Studio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@700&family=Inter:wght@400;600&display=swap">
<style>
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: #fbf6e9;
color: #1a0e00;
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 32px;
background: #fbf6e9;
border-bottom: 2px solid #7a5c3e;
font-family: 'Crimson Pro', serif;
font-size: 1.5rem;
}
header .brand {
font-weight: 700;
}
header select {
padding: 8px 12px;
border: 2px solid #fcd13e;
border-radius: 4px;
background: #fbf6e9;
color: #1a0e00;
font-family: 'Inter', sans-serif;
}
header .status {
padding: 6px 12px;
border-radius: 20px;
background: #fcd13e;
color: #1a0e00;
font-size: 0.875rem;
font-weight: 600;
}
main {
display: flex;
flex: 1;
overflow: hidden;
}
.chat-pane {
width: 40%;
display: flex;
flex-direction: column;
border-right: 2px solid #7a5c3e;
overflow: hidden;
}
.chat-log {
flex: 1;
padding: 24px;
overflow-y: auto;
background: #fbf6e9;
display: flex;
flex-direction: column;
gap: 16px;
}
.chat-message {
display: flex;
flex-direction: column;
gap: 4px;
background: #fcd13e;
padding: 12px;
border-radius: 6px;
max-width: 70%;
}
.chat-message.user {
align-self: flex-end;
background: #3a4a2c;
color: #fbf6e9;
}
.chat-input {
padding: 16px;
border-top: 2px solid #7a5c3e;
display: flex;
gap: 8px;
}
.chat-input input {
flex: 1;
padding: 8px 12px;
border: 2px solid #7a5c3e;
border-radius: 4px;
font-size: 1rem;
}
.chat-input button {
padding: 8px 16px;
background: #1a0e00;
color: #fbf6e9;
border: none;
border-radius: 4px;
font-weight: 600;
cursor: pointer;
}
.panels {
width: 60%;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
padding: 24px;
}
.panel {
background: #fbf6e9;
border: 2px solid #7a5c3e;
border-radius: 8px;
padding: 16px;
display: flex;
flex-direction: column;
gap: 12px;
}
.panel-header {
font-family: 'Crimson Pro', serif;
font-size: 1.25rem;
font-weight: 700;
color: #1a0e00;
border-bottom: 2px solid #fcd13e;
padding-bottom: 8px;
}
.panel-body {
font-size: 0.9rem;
color: #3a4a2c;
line-height: 1.4;
}
.panel-body .frame-count {
color: #fcd13e;
font-weight: 600;
}
.panel-body .note {
color: #7a5c3e;
}
</style>
</head>
<body>
<header>
<div class="brand">FOUR HORSEMEN STUDIO</div>
<div>
<select>
<option>Hormuz Initiative</option>
<option>Silk Road Reimagined</option>
<option>Apiary Protocol</option>
</select>
<div class="status">idle</div>
</div>
</header>
<main>
<div class="chat-pane">
<div class="chat-log">
<div class="chat-message user">
<div>/run-topic: Pollen Distribution Optimization</div>
</div>
<div class="chat-message">
<div>Topic initiated. Calculating optimal hive frame alignment...</div>
</div>
<div class="chat-message user">
<div>/stampede: 3</div>
</div>
<div class="chat-message">
<div>Stampede mode engaged. 3 worker bees redirected to brood chamber.</div>
</div>
</div>
<div class="chat-input">
<input type="text" placeholder="beekeeper command..." />
<button>Send</button>
</div>
</div>
<div class="panels">
<div class="panel">
<div class="panel-header">Preview</div>
<div class="panel-body">
Current Frame: <span class="frame-count">8</span> / 120. Frame Status: Queen's Mark Applied. Next Frame: 9 (Scheduled: 2023-10-05 14:30)
</div>
</div>
<div class="panel">
<div class="panel-header">Paper</div>
<div class="panel-body">
<div class="note">Hive Structure Analysis: 37% complete. Recommend: Add 2 more cells to the brood chamber.</div>
</div>
</div>
<div class="panel">
<div class="panel-header">Figma</div>
<div class="panel-body">
Design Asset: Hive Frame Mockup. Status: In Review. Next Review: 2023-10-06
</div>
</div>
<div class="panel">
<div class="panel-header">Canva</div>
<div class="panel-body">
Template: Queen's Mark Logo. Last Edit: 2023-10-04 by Beekeeper Admin
</div>
</div>
</div>
</main>
</body>
</html>