← back to Hormuzy

mockups/060-garden-seed-packet.html

172 lines

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>garden-seed-packet — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@700&family=Source+Sans+Pro:wght@400&display=swap">
  <style>
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Source Sans Pro', sans-serif;
      background: #fbf6e9;
      color: #3a4a2c;
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 32px;
      background: #fbf6e9;
      border-bottom: 2px solid #a83232;
      font-family: 'Crimson Pro', serif;
      font-size: 24px;
    }
    header select {
      padding: 8px 12px;
      font-size: 14px;
      border: 1px solid #9b7a3e;
      border-radius: 4px;
      background: #fbf6e9;
      color: #3a4a2c;
    }
    header .status {
      padding: 6px 12px;
      border-radius: 4px;
      font-size: 12px;
      background: #7fb069;
      color: #3a4a2c;
    }
    .main {
      display: flex;
      flex: 1;
      overflow: hidden;
    }
    .chat-pane {
      width: 40%;
      border-right: 1px solid #9b7a3e;
      display: flex;
      flex-direction: column;
    }
    .chat-log {
      flex: 1;
      padding: 24px;
      overflow-y: auto;
      background: #fbf6e9;
      font-size: 14px;
      line-height: 1.5;
    }
    .chat-log .message {
      margin: 12px 0;
    }
    .chat-log .user {
      color: #a83232;
    }
    .chat-log .system {
      color: #3a4a2c;
    }
    .chat-input {
      padding: 16px;
      border-top: 1px solid #9b7a3e;
      display: flex;
    }
    .chat-input input {
      flex: 1;
      padding: 8px 12px;
      font-size: 14px;
      border: 1px solid #9b7a3e;
      border-radius: 4px;
      background: #fbf6e9;
    }
    .panels {
      width: 60%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      padding: 24px;
    }
    .panel {
      background: #fbf6e9;
      border: 2px solid #9b7a3e;
      border-radius: 6px;
      padding: 20px;
      display: flex;
      flex-direction: column;
    }
    .panel-header {
      font-family: 'Crimson Pro', serif;
      font-size: 18px;
      margin-bottom: 16px;
      color: #3a4a2c;
    }
    .panel-content {
      font-size: 14px;
      line-height: 1.6;
      color: #3a4a2c;
    }
    .panel-content code {
      color: #a83232;
    }
    .panel-content .note {
      color: #7fb069;
    }
  </style>
</head>
<body>
  <header>
    <div>FOUR HORSEMEN STUDIO</div>
    <div>
      <select>
        <option>Project Root</option>
        <option>Bloom Protocol</option>
        <option>Soil Matrix</option>
      </select>
      <div class="status">idle</div>
    </div>
  </header>
  <div class="main">
    <div class="chat-pane">
      <div class="chat-log">
        <div class="message"><span class="user">user</span>: /run-topic "germination rituals"</div>
        <div class="message"><span class="system">system</span>: topic initiated — sowing 1/4 deep, 7 days to germ, full sun required</div>
        <div class="message"><span class="user">user</span>: /stampede "seedling symphony"</div>
        <div class="message"><span class="system">system</span>: stampede mode activated — 32 stems sprouting in 4x4 grid, pH 6.5 soil recommended</div>
      </div>
      <div class="chat-input">
        <input type="text" placeholder="sow your command here...">
      </div>
    </div>
    <div class="panels">
      <div class="panel">
        <div class="panel-header">Preview</div>
        <div class="panel-content">
          <p>Mockup of seed packet design: <code>germination rituals</code> in bold serif, with a hand-drawn leaf motif. Color swatches: #7fb069 (stem), #a83232 (seed).</p>
        </div>
      </div>
      <div class="panel">
        <div class="panel-header">Paper</div>
        <div class="panel-content">
          <p>Notes: <code>soil pH 6.5</code> for optimal growth. Sow 1/4 deep, water sparingly. Days to germ: 7–10 under full sun.</p>
          <p class="note">*Avoid overwatering — roots may drown in excess.</p>
        </div>
      </div>
      <div class="panel">
        <div class="panel-header">Figma</div>
        <div class="panel-content">
          <p>Design board: 4x4 grid of seedlings, each with unique leaf patterns. Mockup of a seed packet with embossed text: <code>germination rituals</code>.</p>
        </div>
      </div>
      <div class="panel">
        <div class="panel-header">Canva</div>
        <div class="panel-content">
          <p>Template: "Seedling Symphony" with 32 stems arranged in a spiral. Color palette: #fbf6e9 (background), #3a4a2c (text), #9b7a3e (accent).</p>
        </div>
      </div>
    </div>
  </div>
</body>
</html>