← back to Hormuzy

mockups/011-film-cutting-room.html

174 lines

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=1440, height=900">
  <title>film-cutting-room — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Spectral:wght@400;600&display=swap">
  <style>
    body {
      margin: 0;
      font-family: Inter, sans-serif;
      background-color: #1a1612;
      color: #e8e1d3;
      overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .header {
      background-color: #3e2c1a;
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      font-family: Spectral, serif;
      font-size: 24px;
      color: #dba673;
    }

    .project-selector {
      font-size: 16px;
      color: #e8e1d3;
      background-color: #5d4037;
      border: none;
      padding: 8px 12px;
      border-radius: 4px;
      cursor: pointer;
    }

    .status {
      font-size: 16px;
      color: #dba673;
    }

    .main-container {
      display: flex;
      height: calc(100vh - 40px); /* Account for header height */
      padding: 20px;
    }

    .left-pane {
      width: 40%;
      background-color: #5d4037;
      padding: 15px;
      border-radius: 8px;
      height: 100%;
    }

    .chat-log {
      height: calc(100% - 50px); /* Account for input bar */
      overflow-y: auto;
      padding-bottom: 10px;
    }

    .chat-message {
      padding: 8px 12px;
      margin-bottom: 8px;
      border-radius: 4px;
      background-color: #3e2c1a;
      color: #e8e1d3;
      font-size: 14px;
    }

    .chat-input {
      width: 100%;
      padding: 8px 12px;
      border: none;
      border-radius: 4px;
      background-color: #3e2c1a;
      color: #e8e1d3;
      font-size: 14px;
    }

    .right-pane {
      width: 60%;
      padding: 15px;
      background-color: #5d4037;
      border-radius: 8px;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 20px;
    }

    .panel {
      background-color: #3e2c1a;
      border-radius: 8px;
      padding: 20px;
      color: #e8e1d3;
      font-size: 16px;
    }

    .panel h3 {
      font-family: Spectral, serif;
      font-size: 20px;
      color: #dba673;
      margin-bottom: 10px;
    }

    .panel p {
      font-size: 14px;
      line-height: 1.6;
    }
  </style>
</head>
<body>

  <div class="header">
    <div class="brand">HORMUZ</div>
    <div>
      <select class="project-selector">
        <option value="project1">Project Chimera</option>
        <option value="project2">Operation Valkyrie</option>
        <option value="project3">The Obsidian Gate</option>
      </select>
    </div>
    <div class="status">Idle</div>
  </div>

  <div class="main-container">
    <div class="left-pane">
      <div class="chat-log">
        <div class="chat-message">
          <span style="font-weight: 600;">Operator:</span> Initializing topic tree. Please stand by.
        </div>
        <div class="chat-message">
          <span style="font-weight: 600;">User:</span> /run-topic "Ethereal Bloom" - sequence 37
        </div>
        <div class="chat-message">
          <span style="font-weight: 600;">System:</span> Topic "Ethereal Bloom" initiated. 47 takes queued.
        </div>
        <div class="chat-message">
          <span style="font-weight: 600;">User:</span> /stampede 12-28 - frame ranges 147-162.
        </div>
        <div class="chat-message">
          <span style="font-weight: 600;">System:</span> Stampede applied. Estimated render time: 3 hours, 17 minutes.
        </div>
      </div>
      <input type="text" class="chat-input" placeholder="Enter message...">
    </div>

    <div class="right-pane">
      <div class="panel">
        <h3>Preview</h3>
        <p>Displaying a low-resolution proxy. Check for composition issues and general flow.  Currently rendering frame 187.  Error log: None.</p>
      </div>
      <div class="panel">
        <h3>Paper</h3>
        <p>Timeline data and edit notes.  Track changes, manage versioning.  Last updated: 2024-02-29 14:32 UTC.</p>
      </div>
      <div class="panel">
        <h3>Figma</h3>
        <p>Asset library synchronization status.  Checking for conflicts...  Last sync: 1 minute ago.  Pending updates: 2.</p>
      </div>
      <div class="panel">
        <h3>Canva</h3>
        <p>Marketing material draft.  Review and approve assets for social media campaign.  Deadline: March 15th.  Current status: In Review.</p>
      </div>
    </div>
  </div>

</body>
</html>