← back to Hormuzy

mockups/059-field-naturalist.html

193 lines

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>field-naturalist-journal — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&family=Crimson+Pro:wght@400;600&display=swap">
  <style>
    :root {
      --bg: #fbf6e9;
      --primary: #1a0e00;
      --support1: #3a4a2c;
      --support2: #7a5c3e;
      --accent: #a83232;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Crimson Pro', serif;
    }
    body {
      background: var(--bg);
      color: var(--primary);
      height: 900px;
      display: flex;
      flex-direction: column;
      font-size: 16px;
    }
    header {
      height: 60px;
      background: var(--support1);
      display: flex;
      align-items: center;
      padding: 0 24px;
      position: relative;
      border-bottom: 2px solid var(--support2);
    }
    header h1 {
      font-family: 'Caveat', cursive;
      font-size: 24px;
      margin-right: 24px;
    }
    .project-picker, .status {
      font-size: 14px;
      color: var(--accent);
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
    }
    .status::after {
      content: "idle";
      margin-left: 8px;
      border: 1px solid var(--accent);
      padding: 2px 6px;
      border-radius: 4px;
    }
    main {
      flex: 1;
      display: flex;
      overflow: hidden;
    }
    .left-pane {
      width: 40%;
      background: var(--bg);
      border-right: 1px solid var(--support2);
      display: flex;
      flex-direction: column;
    }
    .chat-log {
      flex: 1;
      padding: 24px;
      overflow-y: auto;
      background: var(--bg);
      border-right: 1px solid var(--support2);
    }
    .chat-message {
      margin-bottom: 16px;
    }
    .chat-message.user {
      text-align: right;
    }
    .chat-message.user::before {
      content: "you:";
      color: var(--accent);
      margin-right: 8px;
    }
    .chat-message.system {
      text-align: left;
    }
    .chat-message.system::before {
      content: "orchestrator:";
      color: var(--primary);
      margin-right: 8px;
    }
    .chat-input {
      display: flex;
      padding: 12px 24px;
      border-top: 1px solid var(--support2);
    }
    .chat-input input {
      flex: 1;
      padding: 8px;
      font-size: 14px;
      border: none;
      outline: none;
    }
    .chat-input button {
      padding: 8px 16px;
      margin-left: 8px;
      background: var(--support2);
      color: var(--bg);
      border: none;
      cursor: pointer;
      font-weight: 600;
    }
    .right-pane {
      width: 60%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 24px;
      padding: 24px;
    }
    .panel {
      background: var(--bg);
      border: 1px solid var(--support2);
      padding: 16px;
      display: flex;
      flex-direction: column;
    }
    .panel h2 {
      font-family: 'Caveat', cursive;
      font-size: 18px;
      margin-bottom: 12px;
      color: var(--primary);
    }
    .panel-content {
      flex: 1;
      background: #fff8f0;
      padding: 12px;
      border: 1px solid var(--support1);
      border-radius: 4px;
      font-size: 14px;
      line-height: 1.5;
      color: var(--support1);
    }
    .panel-content::before {
      content: "•";
      color: var(--accent);
      margin-right: 8px;
    }
  </style>
</head>
<body>
  <header>
    <h1>FOUR HORSEMEN</h1>
    <div class="project-picker">Projects ▼</div>
    <div class="status">▶</div>
  </header>
  <main>
    <div class="left-pane">
      <div class="chat-log">
        <div class="chat-message system">/run-topic "the anatomy of a whispering inkwell"</div>
        <div class="chat-message user">/stampede 3</div>
        <div class="chat-message system">Observing the migration patterns of the ink-stained quill... 3 agents deployed.</div>
        <div class="chat-message system">Note: Figma layer 'Sketch of a wandering inkwell' requires 1200px width.</div>
      </div>
      <div class="chat-input">
        <input type="text" placeholder="type /help for commands">
        <button>Send</button>
      </div>
    </div>
    <div class="right-pane">
      <div class="panel">
        <h2>Preview</h2>
        <div class="panel-content">A parchment-like texture with faint watercolor stains. The quill's nib appears to be made of a rare species of reed, possibly from the delta regions.</div>
      </div>
      <div class="panel">
        <h2>Paper</h2>
        <div class="panel-content">Material notes: 80% cotton, 20% hemp. Stains fade with age. The ink is iron gall, which may cause slight discoloration over time.</div>
      </div>
      <div class="panel">
        <h2>Figma</h2>
        <div class="panel-content">Layer 'Sketch of a wandering inkwell' – 3 layers, 1200px width. Includes a 100px margin for the quill's flight path.</div>
      </div>
      <div class="panel">
        <h2>Canva</h2>
        <div class="panel-content">Template 'Field Journal Spread' – 2 columns, 16pt baseline grid. Includes a placeholder for a pressed leaf specimen.</div>
      </div>
    </div>
  </main>
</body>
</html>