forked from Rockachopa/the-matrix
61 lines
2.0 KiB
HTML
61 lines
2.0 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
|
<title>Timmy Tower World</title>
|
||
|
|
<style>
|
||
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
|
body { background: #000; overflow: hidden; font-family: 'Courier New', monospace; }
|
||
|
|
canvas { display: block; }
|
||
|
|
#ui-overlay {
|
||
|
|
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
|
||
|
|
pointer-events: none; z-index: 10;
|
||
|
|
}
|
||
|
|
#hud {
|
||
|
|
position: fixed; top: 16px; left: 16px;
|
||
|
|
color: #00ff41; font-size: 12px; line-height: 1.6;
|
||
|
|
text-shadow: 0 0 8px #00ff41;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
#hud h1 { font-size: 16px; letter-spacing: 4px; margin-bottom: 8px; color: #00ff88; }
|
||
|
|
#status-panel {
|
||
|
|
position: fixed; top: 16px; right: 16px;
|
||
|
|
color: #00ff41; font-size: 11px; line-height: 1.8;
|
||
|
|
text-shadow: 0 0 6px #00ff41; max-width: 240px;
|
||
|
|
}
|
||
|
|
#status-panel .label { color: #007722; }
|
||
|
|
#chat-panel {
|
||
|
|
position: fixed; bottom: 16px; left: 16px; right: 16px;
|
||
|
|
max-height: 180px; overflow-y: auto;
|
||
|
|
color: #00ff41; font-size: 11px; line-height: 1.6;
|
||
|
|
text-shadow: 0 0 4px #00ff41;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
.chat-entry { opacity: 0.8; }
|
||
|
|
.chat-entry .agent-name { color: #00ff88; font-weight: bold; }
|
||
|
|
#connection-status {
|
||
|
|
position: fixed; bottom: 16px; right: 16px;
|
||
|
|
font-size: 11px; color: #555;
|
||
|
|
}
|
||
|
|
#connection-status.connected { color: #00ff41; text-shadow: 0 0 6px #00ff41; }
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="ui-overlay">
|
||
|
|
<div id="hud">
|
||
|
|
<h1>TIMMY TOWER WORLD</h1>
|
||
|
|
<div id="agent-count">AGENTS: 0</div>
|
||
|
|
<div id="active-jobs">JOBS: 0</div>
|
||
|
|
<div id="fps">FPS: --</div>
|
||
|
|
</div>
|
||
|
|
<div id="status-panel">
|
||
|
|
<div id="agent-list"></div>
|
||
|
|
</div>
|
||
|
|
<div id="chat-panel"></div>
|
||
|
|
<div id="connection-status">OFFLINE</div>
|
||
|
|
</div>
|
||
|
|
<script type="module" src="./js/main.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|