← back to Hormuzy

mockups/033-watchmaker-bench.html

215 lines

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>watchmaker-bench — Four Horsemen Studio</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cormorant:wght@400;700&family=Source+Code+Pro:wght@400;500&display=swap">
    <style>
        body {
            margin: 0;
            padding: 0;
            background-color: #1a1410;
            color: #f0e6d0;
            font-family: 'Source Code Pro', monospace;
            font-size: 14px;
            line-height: 1.6;
            overflow-x: hidden; /* Prevent horizontal scroll */
        }

        /* Global Styles */
        .container {
            width: 1440px;
            margin: 0 auto;
            padding: 20px;
            box-sizing: border-box;
        }

        h1, h2, h3 {
            color: #d4b896;
            font-family: 'Cormorant', serif;
            margin-bottom: 0.5em;
        }

        h1 {
            font-size: 2.5em;
            font-weight: 400;
        }

        h2 {
            font-size: 1.5em;
            font-weight: 400;
        }

        h3 {
            font-size: 1.25em;
            font-weight: 400;
        }

        /* Header */
        header {
            background-color: #0d0a08;
            padding: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        header h1 {
            margin: 0;
            font-size: 2em;
        }

        .project-picker {
            padding: 8px 12px;
            background-color: #7a5c3e;
            color: #f0e6d0;
            border: none;
            cursor: pointer;
            border-radius: 5px;
        }

        .status-indicator {
            padding: 8px 12px;
            background-color: #7a5c3e;
            color: #f0e6d0;
            border: none;
            border-radius: 5px;
        }

        /* Main Content Area */
        main {
            display: flex;
        }

        .left-pane {
            width: 40%;
            background-color: #7a5c3e;
            padding: 15px;
            border-right: 2px solid #0d0a08;
            height: calc(100vh - 40px); /* Adjust as needed */
            overflow-y: auto;
        }

        .right-pane {
            width: 60%;
            padding: 15px;
            height: calc(100vh - 40px); /* Adjust as needed */
            overflow-y: auto;
        }

        .chat-log {
            height: calc(100% - 50px);
            overflow-y: auto;
            padding-bottom: 10px;
        }

        .chat-message {
            padding: 10px;
            margin-bottom: 5px;
            border-bottom: 1px solid #0d0a08;
        }

        .chat-input {
            width: 100%;
            padding: 8px;
            background-color: #7a5c3e;
            color: #f0e6d0;
            border: none;
            border-radius: 5px;
        }

        .sub-panel {
            background-color: #0d0a08;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 15px;
            height: 170px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #d4b896;
            font-size: 1em;
        }

        .sub-panel h3 {
            margin-bottom: 10px;
        }

        /* Specific Content */
        .project-options {
            margin-left: 10px;
        }

        .chat-user {
            font-weight: 500;
            margin-right: 5px;
        }

        .sub-panel-content {
            font-style: italic;
            text-align: center;
        }

    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>HORMUZ</h1>
            <div class="project-options">
                <select class="project-picker">
                    <option>Chronometer Project</option>
                    <option>Aetherium Engine</option>
                    <option>Celestial Orrery</option>
                </select>
                <span class="status-indicator">Idle</span>
            </div>
        </header>

        <main>
            <section class="left-pane">
                <h2>Chronometry Log</h2>
                <div class="chat-log">
                    <div class="chat-message">
                        <span class="chat-user">Orchestrator:</span> Initializing sequence...
                    </div>
                    <div class="chat-message">
                        <span class="chat-user">Artisan 7:</span> /run-topic: gear-train-resonance
                    </div>
                    <div class="chat-message">
                        <span class="chat-user">Orchestrator:</span> Topic 'gear-train-resonance' initiated.  Monitoring for anomalies.
                    </div>
                    <div class="chat-message">
                        <span class="chat-user">Engineer 3:</span> /stampede: torque-calibration - duration: 12 cycles
                    </div>
                    <div class="chat-message">
                        <span class="chat-user">Orchestrator:</span> Stampede 'torque-calibration' initiated. Duration: 12 cycles.  Recordings active.
                    </div>
                </div>
                <input type="text" class="chat-input" placeholder="Enter command...">
            </section>

            <section class="right-pane">
                <div class="sub-panel">
                    <h3>Preview</h3>
                    <div class="sub-panel-content">Visual representation of the escapement’s harmonic profile.  Requires manual synchronization.</div>
                </div>
                <div class="sub-panel">
                    <h3>Paper</h3>
                    <div class="sub-panel-content">Schematic diagrams and detailed material specifications.  Consult the ledger for cross-references.</div>
                </div>
                <div class="sub-panel">
                    <h3>Figma</h3>
                    <div class="sub-panel-content">Interactive model of the mainspring housing. Adjust tolerances with caution.</div>
                </div>
                <div class="sub-panel">
                    <h3>Canva</h3>
                    <div class="sub-panel-content">Marketing materials for the Celestial Orrery.  Ensure consistent branding across all channels.</div>
                </div>
            </section>
        </main>
    </div>
</body>
</html>