88 lines
No EOL
3.8 KiB
HTML
88 lines
No EOL
3.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>LCARS Terminal</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Antonio:wght@400;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="lcars-container">
|
|
<!-- Header / Top Bar -->
|
|
<div class="lcars-header">
|
|
<div class="lcars-elbow-top-left"></div>
|
|
<div class="lcars-bar-horizontal">
|
|
<span class="lcars-title">LCARS TERMINAL 24-03</span>
|
|
</div>
|
|
<div class="lcars-bar-curve-right"></div>
|
|
</div>
|
|
|
|
<!-- Sidebar + Content Area -->
|
|
<div class="lcars-middle">
|
|
<div class="lcars-sidebar">
|
|
<div class="lcars-button lcars-orange">SYSTEM</div>
|
|
<div class="lcars-button lcars-pale-orange">LIBRARY</div>
|
|
<a href="sensors.html" style="text-decoration: none;">
|
|
<div class="lcars-button lcars-purple">SENSORS</div>
|
|
</a>
|
|
<div class="lcars-spacer"></div>
|
|
<div class="lcars-button lcars-blue">ANALYSIS</div>
|
|
<a href="mode.html" style="text-decoration: none;">
|
|
<div class="lcars-button lcars-red">MODE</div>
|
|
</a>
|
|
<!-- Bottom elbow connector for sidebar -->
|
|
<div class="lcars-column-fill"></div>
|
|
</div>
|
|
|
|
<main class="lcars-main-content">
|
|
<div class="lcars-content-frame">
|
|
<h1 class="blink">Hintergasse</h1>
|
|
|
|
<div class="content-split">
|
|
<div class="text-block">
|
|
<p>SYSTEM INITIALIZED: STARDATE 47988.2</p>
|
|
<p>NO CRITICAL ALERTS DETECTED.</p>
|
|
<p>MAIN DEFLECTOR DISH: ONLINE</p>
|
|
<p>WARP CORE: STABLE</p>
|
|
</div>
|
|
<div class="graphic-block">
|
|
<!-- Simple CSS shape representing a schematic -->
|
|
<div
|
|
style="width: 200px; height: 100px; border: 2px solid var(--lcars-orange); border-radius: 50px; display: flex; align-items: center; justify-content: center;">
|
|
<div style="width: 80%; height: 2px; background: var(--lcars-red);"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<p>PLEASE SELECT A COMMAND SEQUENCE FROM THE LIBRARY COMPUTER ACCESS AND RETRIEVAL SYSTEM.</p>
|
|
|
|
<div class="data-grid">
|
|
<div class="data-block lcars-blue-bg" style="width: 100px;"></div>
|
|
<div class="data-block lcars-purple-bg" style="width: 50px;"></div>
|
|
<div class="data-block lcars-orange-bg" style="width: 150px;"></div>
|
|
<div class="data-block lcars-pale-orange-bg"
|
|
style="width: 120px; background-color: var(--lcars-pale-orange);"></div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<!-- Footer -->
|
|
<div class="lcars-footer">
|
|
<div class="lcars-elbow-bottom-left"></div>
|
|
<div class="lcars-bar-horizontal-bottom">
|
|
<span class="lcars-status">ONLINE</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Socket.IO Client -->
|
|
<script src="http://10.0.1.122:8084/socket.io/socket.io.js"></script>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
|
|
</html> |