474 lines
12 KiB
HTML
474 lines
12 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Minimalist Split Panel Layout</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,700;1,400&family=Inter:wght@400;500;700&family=JetBrains+Mono:ital,wght@0,400;0,500;1,400&display=swap');
|
|
|
|
/* Design Spec Token Definition */
|
|
:root {
|
|
--bg-canvas: #121417;
|
|
--bg-surface: #1c1f26;
|
|
--border-color: #2b303b;
|
|
--text-primary: #e0e6f0;
|
|
--text-muted: #8a95a5;
|
|
--accent: #00ff66; /* ANSI Green */
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--bg-canvas);
|
|
color: var(--text-primary);
|
|
font-family: 'Inter', sans-serif;
|
|
line-height: 1.6;
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Sticky Navigation Header at the top */
|
|
.sticky-header {
|
|
position: sticky;
|
|
top: 0;
|
|
height: 56px;
|
|
background-color: var(--bg-canvas);
|
|
border-bottom: 1px solid var(--border-color);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 24px;
|
|
z-index: 100;
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
}
|
|
|
|
.logo-container {
|
|
font-weight: 700;
|
|
font-size: 1rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.logo-prompt {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.header-nav {
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
|
|
.nav-link {
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
padding: 4px 10px;
|
|
border: 1px solid transparent;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
/* Snappy Hover Inversion */
|
|
.nav-link:hover {
|
|
background-color: var(--accent);
|
|
color: var(--bg-canvas);
|
|
}
|
|
|
|
.nav-link:focus {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: -2px;
|
|
}
|
|
|
|
/* Structural Indicator for Active Navigation Items */
|
|
.nav-link.active::before {
|
|
content: "> ";
|
|
color: var(--accent);
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.nav-link.active:hover::before {
|
|
color: var(--bg-canvas);
|
|
}
|
|
|
|
/* Split Container Layout */
|
|
.split-container {
|
|
display: flex;
|
|
flex: 1;
|
|
height: calc(100vh - 56px);
|
|
overflow: hidden;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.split-container {
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
}
|
|
.left-pane {
|
|
width: 100% !important;
|
|
height: auto !important;
|
|
border-right: none !important;
|
|
border-bottom: 1px solid var(--border-color);
|
|
padding: 40px 24px !important;
|
|
}
|
|
.right-pane {
|
|
height: auto !important;
|
|
overflow-y: visible !important;
|
|
}
|
|
}
|
|
|
|
/* Left Pane - Sticky Terminal Mascot (non-scrolling) */
|
|
.left-pane {
|
|
width: 380px;
|
|
background-color: var(--bg-canvas);
|
|
border-right: 1px solid var(--border-color);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 32px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.terminal-card {
|
|
width: 100%;
|
|
border: 1px solid var(--border-color);
|
|
background-color: var(--bg-surface);
|
|
border-radius: 4px;
|
|
padding: 20px;
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
}
|
|
|
|
.terminal-card-header {
|
|
font-size: 0.75rem;
|
|
color: var(--text-muted);
|
|
margin-bottom: 16px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
padding-bottom: 8px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.mascot-pre {
|
|
font-size: 0.8rem;
|
|
line-height: 1.2;
|
|
color: var(--accent);
|
|
background-color: var(--bg-canvas);
|
|
padding: 12px;
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 2px;
|
|
overflow: hidden;
|
|
white-space: pre;
|
|
}
|
|
|
|
.status-panel {
|
|
margin-top: 16px;
|
|
font-size: 0.8rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.status-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.status-label {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.status-value {
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Right Pane - Scrollable Content feed */
|
|
.right-pane {
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
background-color: var(--bg-canvas);
|
|
padding: 40px 24px;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.scroll-content {
|
|
width: 100%;
|
|
max-width: 70ch; /* Cap readability width */
|
|
}
|
|
|
|
.section-title {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-weight: 700;
|
|
font-size: 1.4rem;
|
|
color: var(--text-primary);
|
|
margin-bottom: 24px;
|
|
border-bottom: 1px solid var(--border-color);
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
/* Tile Cards Component */
|
|
.tile-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
.tile {
|
|
background-color: var(--bg-surface);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 4px;
|
|
padding: 24px;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: block;
|
|
transition: none; /* Instant snap interactions */
|
|
}
|
|
|
|
/* Snappy Hover State (Border highlight & accent title) */
|
|
.tile:hover {
|
|
border-color: var(--accent);
|
|
}
|
|
|
|
.tile:focus {
|
|
outline: 2px solid var(--accent);
|
|
outline-offset: 4px;
|
|
}
|
|
|
|
.tile-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.tile-title {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-weight: 700;
|
|
font-size: 1.1rem;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.tile:hover .tile-title {
|
|
color: var(--accent);
|
|
}
|
|
|
|
.tile-meta {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-size: 0.8rem;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.tile-description {
|
|
font-size: 0.9rem;
|
|
color: var(--text-primary);
|
|
line-height: 1.5;
|
|
}
|
|
|
|
/* Footer styling inside the scroll view */
|
|
.pane-footer {
|
|
margin-top: 40px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid var(--border-color);
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
font-size: 0.8rem;
|
|
color: var(--text-muted);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Sticky Top Header -->
|
|
<header class="sticky-header">
|
|
<div class="logo-container">
|
|
<span class="logo-prompt">$</span> agy --layout=split
|
|
</div>
|
|
<nav class="header-nav">
|
|
<a href="index.html" class="nav-link">Catalog</a>
|
|
<a href="homepage.html" class="nav-link">Sample 1</a>
|
|
<a href="split-panel.html" class="nav-link active">Sample 2</a>
|
|
<a href="companion.html" class="nav-link">Sample 3</a>
|
|
<a href="document-flow.html" class="nav-link">Sample 4</a>
|
|
<a href="portfolio.html" class="nav-link">Sample 5</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- Split Panel Main Container -->
|
|
<div class="split-container">
|
|
|
|
<!-- Left Pane - Center-Aligned ASCII Art Terminal Mascot -->
|
|
<aside class="left-pane">
|
|
<div class="terminal-card">
|
|
<div class="terminal-card-header">
|
|
<span>sys_monitor.sh</span>
|
|
<span>ONLINE</span>
|
|
</div>
|
|
<pre id="ascii-mascot" class="mascot-pre">
|
|
.-----------------.
|
|
/ ^ ^ ^ /|
|
|
/ (_) (_) (_) / |
|
|
/__________________/ |
|
|
| ___ ___ | |
|
|
| [o_o] [o_o] | |
|
|
| `-' `-' | |
|
|
| ______ | |
|
|
| / \ | /
|
|
| | -- | | /
|
|
| \____/ |/
|
|
`------------------'
|
|
</pre>
|
|
<div class="status-panel">
|
|
<div class="status-row">
|
|
<span class="status-label">Target:</span>
|
|
<span class="status-value">AGY-Node-A2</span>
|
|
</div>
|
|
<div class="status-row">
|
|
<span class="status-label">Status:</span>
|
|
<span class="status-value" style="color: var(--accent);">ANIMATING</span>
|
|
</div>
|
|
<div class="status-row">
|
|
<span class="status-label">Engine:</span>
|
|
<span class="status-value">Vanilla JS</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
|
|
<!-- Right Pane - Scrollable List of Cards -->
|
|
<main class="right-pane">
|
|
<div class="scroll-content">
|
|
<h2 class="section-title">Developer Workspace Projects</h2>
|
|
|
|
<div class="tile-list">
|
|
|
|
<!-- Tile 1 -->
|
|
<a href="#" class="tile">
|
|
<div class="tile-header">
|
|
<h3 class="tile-title">Custom POSIX Shell Parser</h3>
|
|
<span class="tile-meta">v1.2.0</span>
|
|
</div>
|
|
<p class="tile-description">
|
|
A lightweight Lexer and AST parser written in Lua for parsing POSIX compliant shell scripts. Highly optimized for syntax coloring inside modal environments.
|
|
</p>
|
|
</a>
|
|
|
|
<!-- Tile 2 -->
|
|
<a href="#" class="tile">
|
|
<div class="tile-header">
|
|
<h3 class="tile-title">WireGuard Mesh Topology Builder</h3>
|
|
<span class="tile-meta">v0.8.4</span>
|
|
</div>
|
|
<p class="tile-description">
|
|
Automated configuration generator for setting up full-mesh WireGuard private overlays across cloud instances and local homelab nodes.
|
|
</p>
|
|
</a>
|
|
|
|
<!-- Tile 3 -->
|
|
<a href="#" class="tile">
|
|
<div class="tile-header">
|
|
<h3 class="tile-title">Zero-Allocation Logger (Go)</h3>
|
|
<span class="tile-meta">v2.1.1</span>
|
|
</div>
|
|
<p class="tile-description">
|
|
A high-performance JSON structure logger that uses sync.Pool buffers to avoid memory allocation overhead during intensive disk operations.
|
|
</p>
|
|
</a>
|
|
|
|
<!-- Tile 4 -->
|
|
<a href="#" class="tile">
|
|
<div class="tile-header">
|
|
<h3 class="tile-title">Embedded Kernel Boot Strap</h3>
|
|
<span class="tile-meta">v0.1.0</span>
|
|
</div>
|
|
<p class="tile-description">
|
|
Minimalist boot sector and initial kernel bootstrap for ARM Cortex-M microcontrollers to handle memory map initialization and early UART status printouts.
|
|
</p>
|
|
</a>
|
|
|
|
<!-- Tile 5 -->
|
|
<a href="#" class="tile">
|
|
<div class="tile-header">
|
|
<h3 class="tile-title">Traefik Cloudflare Dynamic DNS Daemon</h3>
|
|
<span class="tile-meta">v1.0.2</span>
|
|
</div>
|
|
<p class="tile-description">
|
|
Background controller daemon designed to sync Docker container network labels with Cloudflare DNS records to route traffic to local homelab subdomains.
|
|
</p>
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<footer class="pane-footer">
|
|
<span>Split Panel Spec Sample</span>
|
|
<span>© 2026 Developer System</span>
|
|
</footer>
|
|
</div>
|
|
</main>
|
|
|
|
</div>
|
|
|
|
<!-- Lightweight Script for Mascot Animation (Binary Steps) -->
|
|
<script>
|
|
const mascot = document.getElementById('ascii-mascot');
|
|
|
|
const frames = [
|
|
// Frame 1: Standard Look
|
|
` .-----------------.
|
|
/ ^ ^ ^ /|
|
|
/ (_) (_) (_) / |
|
|
/__________________/ |
|
|
| ___ ___ | |
|
|
| [o_o] [o_o] | |
|
|
| `-' `-' | |
|
|
| ______ | |
|
|
| / \\ | /
|
|
| | -- | | /
|
|
| \\____/ |/
|
|
\`------------------'`,
|
|
|
|
// Frame 2: Blinking Eyes / Surprised Mouth
|
|
` .-----------------.
|
|
/ ^ ^ ^ /|
|
|
/ (_) (_) (_) / |
|
|
/__________________/ |
|
|
| ___ ___ | |
|
|
| [-_-] [-_-] | |
|
|
| \`-' \`-' | |
|
|
| ______ | |
|
|
| / \\ | /
|
|
| | O | | /
|
|
| \\____/ |/
|
|
\`------------------'`,
|
|
|
|
// Frame 3: Winking Eyes / Grinning Mouth
|
|
` .-----------------.
|
|
/ ^ ^ ^ /|
|
|
/ (_) (_) (_) / |
|
|
/__________________/ |
|
|
| ___ ___ | |
|
|
| [o_-] [o_-] | |
|
|
| \`-' \`-' | |
|
|
| ______ | |
|
|
| / \\ | /
|
|
| | == | | /
|
|
| \\____/ |/
|
|
\`------------------'`
|
|
];
|
|
|
|
let currentFrame = 0;
|
|
|
|
setInterval(() => {
|
|
currentFrame = (currentFrame + 1) % frames.length;
|
|
mascot.innerText = frames[currentFrame];
|
|
}, 850);
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|