← back to Hormuzy
mockups/018-swiss-grid.html
182 lines
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>swiss-international — Four Horsemen Studio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@300;400;700&family=Helvetica:wght@300;400;700&display=swap">
<style>
body {
margin: 0;
font-family: Helvetica, sans-serif;
background-color: #ffffff;
color: #000000;
font-size: 16px;
line-height: 1.5;
}
.header {
background-color: #f5f5f5;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
}
.brand {
font-family: 'Helvetica Neue', sans-serif;
font-weight: 700;
font-size: 1.5em;
color: #000000;
}
.project-picker {
font-family: 'Helvetica Neue', sans-serif;
font-size: 0.9em;
color: #666666;
}
.status {
font-family: 'Helvetica Neue', sans-serif;
font-weight: 400;
font-size: 0.9em;
color: #666666;
}
.container {
display: flex;
padding: 20px;
height: 800px; /* Adjust as needed */
}
.left-pane {
width: 40%;
background-color: #ffffff;
padding: 20px;
border-right: 1px solid #f5f5f5;
}
.chat-log {
height: calc(100% - 50px);
overflow-y: auto;
padding: 10px;
}
.message {
margin-bottom: 10px;
padding: 10px;
background-color: #f5f5f5;
border-radius: 5px;
}
.chat-input {
display: flex;
padding: 10px;
border-top: 1px solid #f5f5f5;
input {
flex-grow: 1;
border: none;
padding: 8px;
font-family: Helvetica, sans-serif;
}
button {
background-color: #ff0000;
color: #ffffff;
border: none;
padding: 8px 12px;
font-family: Helvetica, sans-serif;
cursor: pointer;
}
}
.right-pane {
width: 60%;
background-color: #ffffff;
padding: 20px;
}
.sub-panel {
display: flex;
flex-direction: column;
width: 100%;
margin-bottom: 20px;
border: 1px solid #f5f5f5;
padding: 20px;
}
.sub-panel h2 {
font-family: 'Helvetica Neue', sans-serif;
font-weight: 400;
font-size: 1.2em;
margin-top: 0;
color: #000000;
}
.sub-panel p {
font-family: Helvetica, sans-serif;
color: #666666;
}
</style>
</head>
<body>
<header class="header">
<div class="brand">HORMUZ</div>
<div class="project-picker">
<select>
<option value="project1">Project Chimera</option>
<option value="project2">Project Leviathan</option>
<option value="project3">Project Behemoth</option>
</select>
</div>
<div class="status">Idle</div>
</header>
<div class="container">
<div class="left-pane">
<h2>Orchestration Log</h2>
<div class="chat-log">
<div class="message">
<span style="font-family: 'Helvetica Neue', sans-serif; font-weight: 700;">Operator 734:</span> Initialized sequence.
</div>
<div class="message">
<span style="font-family: 'Helvetica Neue', sans-serif; font-weight: 700;">System:</span> Topic "Aetherium Extraction" queued.
</div>
<div class="message">
<span style="font-family: 'Helvetica Neue', sans-serif; font-weight: 700;">Operator 734:</span> /run-topic Aetherium Extraction
</div>
<div class="message">
<span style="font-family: 'Helvetica Neue', sans-serif; font-weight: 700;">System:</span> Executing sequence. Current iteration: 17.
</div>
<div class="message">
<span style="font-family: 'Helvetica Neue', sans-serif; font-weight: 700;">Operator 734:</span> /stampede 327-omega. Requires recalibration.
</div>
</div>
<div class="chat-input">
<input type="text" placeholder="Enter command..." />
<button>Execute</button>
</div>
</div>
<div class="right-pane">
<div class="sub-panel">
<h2>Preview</h2>
<p>Real-time visual representation of simulation parameters. Rendering now. Expect anomalies.</p>
</div>
<div class="sub-panel">
<h2>Paper</h2>
<p>Current project specifications and diagrammatic schematics. Refer to document 42-alpha for critical tolerances.</p>
</div>
<div class="sub-panel">
<h2>Figma</h2>
<p>Interface mockups and UI/UX workflows. Revision 7.3 pending approval. Design integrity is paramount.</p>
</div>
<div class="sub-panel">
<h2>Canva</h2>
<p>Marketing materials and public-facing documentation. Maintain strict adherence to brand guidelines. No deviation.</p>
</div>
</div>
</div>
</body>
</html>