← back to Hormuzy

mockups/046-hospital-vitals.html

174 lines

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>hospital-vital-signs — Four Horsemen Studio</title>
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=DSEG7Modern&family=Inter:wght@400;600&display=swap">
  <style>
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      background-color: #0a0a0a;
      color: #fff;
      display: flex;
      flex-direction: column;
      height: 100vh;
      width: 100vw;
      overflow: hidden;
    }
    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 32px;
      background-color: #1a1a1a;
      color: #39ff14;
      font-family: 'DSEG7Modern', monospace;
      font-size: 24px;
      letter-spacing: 2px;
    }
    header select {
      padding: 8px 12px;
      background: #0a0a0a;
      color: #fff;
      border: 1px solid #39ff14;
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
    }
    header .status {
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #39ff14;
      margin-left: 16px;
    }
    .main {
      display: flex;
      flex: 1;
      overflow: hidden;
    }
    .left-pane {
      width: 40%;
      display: flex;
      flex-direction: column;
      background-color: #1a1a1a;
      padding: 24px;
      overflow-y: auto;
    }
    .chat-log {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 16px;
    }
    .message {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .message.user {
      align-self: flex-end;
    }
    .message.agent {
      align-self: flex-start;
    }
    .chat-input {
      display: flex;
      gap: 8px;
    }
    .chat-input input {
      flex: 1;
      padding: 8px 12px;
      background: #0a0a0a;
      color: #fff;
      border: 1px solid #39ff14;
      border-radius: 4px;
      font-family: 'Inter', sans-serif;
    }
    .right-pane {
      width: 60%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 16px;
      padding: 24px;
      background-color: #0a0a0a;
    }
    .panel {
      background-color: #1a1a1a;
      border: 1px solid #39ff14;
      border-radius: 6px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .panel h3 {
      margin: 0;
      font-family: 'DSEG7Modern', monospace;
      font-size: 16px;
      color: #ffeb3b;
    }
    .panel p {
      margin: 0;
      font-size: 14px;
      color: #fff;
    }
  </style>
</head>
<body>
  <header>
    <span>FOUR HORSEMEN STUDIO</span>
    <div>
      <select>
        <option>Project Neon Pulse</option>
        <option>Project Vitalis</option>
        <option>Project BioSync</option>
      </select>
      <div class="status"></div>
    </div>
  </header>
  <div class="main">
    <div class="left-pane">
      <div class="chat-log">
        <div class="message user">
          <div>/run-topic "Neon Pulse Design Sprint"</div>
        </div>
        <div class="message agent">
          <div>Topic initiated. Monitoring vital signs: BP 120/80, HR 72, RR 16.</div>
        </div>
        <div class="message user">
          <div>/stampede "BioSync UI Overhaul"</div>
        </div>
        <div class="message agent">
          <div>Stampede mode activated. All systems on red alert. Preparing for high-intensity design surge.</div>
        </div>
      </div>
      <div class="chat-input">
        <input type="text" placeholder="Enter command or message...">
      </div>
    </div>
    <div class="right-pane">
      <div class="panel">
        <h3>Preview</h3>
        <p>Current design mockup: BP 120/80 interface prototype. Heart rate monitor UI in development. Respiratory rate tracking module pending.</p>
      </div>
      <div class="panel">
        <h3>Paper</h3>
        <p>Whiteboard session: Sketches of neon pulse layout. Vital signs dashboard wireframes. Color palette: #39ff14, #ff5252, #ffeb3b.</p>
      </div>
      <div class="panel">
        <h3>Figma</h3>
        <p>Figma file: 'Neon Pulse Design System'. Components: Vital signs indicators, alert banners, status circles. Last synced: 12 minutes ago.</p>
      </div>
      <div class="panel">
        <h3>Canva</h3>
        <p>Canva template: 'BioSync Presentation Deck'. Slides: Project overview, design sprint timeline, team vitals. Last updated: 3 hours ago.</p>
      </div>
    </div>
  </div>
</body>
</html>