initial commit
This commit is contained in:
358
samples/portfolio.html
Normal file
358
samples/portfolio.html
Normal file
@@ -0,0 +1,358 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>River Rooks | Systems Architecture & Cybersecurity</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');
|
||||
|
||||
:root {
|
||||
--bg-canvas: #0d0f12; /* Deep slate/charcoal */
|
||||
--bg-surface: #121417; /* Slightly lighter surface background */
|
||||
--border-color: #2b303b; /* Low-contrast 1px border */
|
||||
--text-primary: #e0e6f0; /* Off-white prose */
|
||||
--text-muted: #8a95a5; /* Monospaced metadata gray */
|
||||
--accent: #00f0ff; /* High-visibility Cyan terminal accent */
|
||||
}
|
||||
|
||||
* {
|
||||
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.65;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* Sticky Navigation Header */
|
||||
.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: 0.95rem;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.logo-prompt {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.header-nav {
|
||||
display: flex;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
font-size: 0.85rem;
|
||||
padding: 4px 8px;
|
||||
border: 1px solid transparent;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
background-color: var(--accent);
|
||||
color: var(--bg-canvas);
|
||||
}
|
||||
|
||||
.nav-link:focus {
|
||||
outline: 2px solid var(--accent);
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.nav-link.active::before {
|
||||
content: "> ";
|
||||
color: var(--accent);
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.nav-link.active:hover::before {
|
||||
color: var(--bg-canvas);
|
||||
}
|
||||
|
||||
/* Page Canvas Container */
|
||||
.page-wrapper {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 60px 24px;
|
||||
}
|
||||
|
||||
.content-container {
|
||||
width: 100%;
|
||||
max-width: 65ch; /* Capped reading width */
|
||||
}
|
||||
|
||||
/* Header (Identity) */
|
||||
.author-name {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 2.2rem;
|
||||
font-weight: 700;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 8px;
|
||||
letter-spacing: -0.02em;
|
||||
}
|
||||
|
||||
.status-line {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* Rigid, square 8x8px active-state indicator dot */
|
||||
.status-dot {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background-color: var(--accent);
|
||||
display: inline-block;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* 1px Solid Dividers */
|
||||
.section-divider {
|
||||
border: 0;
|
||||
border-top: 1px solid var(--border-color);
|
||||
margin: 32px 0;
|
||||
}
|
||||
|
||||
/* Under Construction Terminal Block */
|
||||
.terminal-block {
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 4px;
|
||||
background-color: var(--bg-surface);
|
||||
font-family: 'JetBrains Mono', monospace;
|
||||
overflow: hidden;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.terminal-header {
|
||||
background-color: var(--bg-canvas);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding: 8px 16px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 0.78rem;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.terminal-title {
|
||||
color: var(--text-primary);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.terminal-body {
|
||||
padding: 16px;
|
||||
font-size: 0.85rem;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.cmd-line {
|
||||
color: var(--text-muted);
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.prompt {
|
||||
color: var(--accent);
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.cmd-output {
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.cursor-block {
|
||||
display: inline-block;
|
||||
width: 8px;
|
||||
height: 15px;
|
||||
background-color: var(--text-primary);
|
||||
margin-left: 4px;
|
||||
vertical-align: middle;
|
||||
animation: blink 1s steps(2, start) infinite;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
to { visibility: hidden; }
|
||||
}
|
||||
|
||||
/* Content Sections */
|
||||
.section-title {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 700;
|
||||
color: var(--text-primary);
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.bio-section {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.bio-text {
|
||||
font-size: 0.98rem;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.stack-section {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.tag-cluster {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.tag {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* Piped Link Footer with Instant Color Snap */
|
||||
.footer-links {
|
||||
font-family: 'IBM Plex Mono', monospace;
|
||||
font-size: 0.85rem;
|
||||
color: var(--text-muted);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.footer-link {
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
padding: 2px 6px;
|
||||
transition: none; /* Zero-delay snap */
|
||||
}
|
||||
|
||||
.footer-link:hover {
|
||||
background-color: var(--accent);
|
||||
color: var(--bg-canvas);
|
||||
}
|
||||
|
||||
.footer-link:focus {
|
||||
outline: 2px solid var(--accent);
|
||||
outline-offset: -2px;
|
||||
}
|
||||
|
||||
.pipe {
|
||||
color: var(--border-color);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- Sticky Header -->
|
||||
<header class="sticky-header">
|
||||
<div class="logo-container">
|
||||
<span class="logo-prompt">$</span> agy --page=portfolio
|
||||
</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">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 active">Sample 5</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<!-- Page Content Area -->
|
||||
<div class="page-wrapper">
|
||||
<main class="content-container">
|
||||
|
||||
<!-- A. Header (Identity) -->
|
||||
<header class="identity-header">
|
||||
<h1 class="author-name">River Rooks</h1>
|
||||
<div class="status-line">
|
||||
<span class="status-dot"></span>
|
||||
<span class="status-text">SYSTEMS ARCHITECTURE & CYBERSECURITY</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<hr class="section-divider">
|
||||
|
||||
<!-- B. Under Construction Terminal Block -->
|
||||
<section class="terminal-section" aria-label="Status Terminal">
|
||||
<div class="terminal-block">
|
||||
<div class="terminal-header">
|
||||
<span class="terminal-title">/var/log/status.txt</span>
|
||||
<span>STDOUT</span>
|
||||
</div>
|
||||
<div class="terminal-body">
|
||||
<div class="cmd-line"><span class="prompt">$</span> cat /var/log/status.txt</div>
|
||||
<div class="cmd-output">
|
||||
Under construction. Full site infrastructure is currently being provisioned. Routing traffic to temporary landing page...<span class="cursor-block"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- C. "Whoami" Section (Biography) -->
|
||||
<section class="bio-section">
|
||||
<h2 class="section-title">whoami</h2>
|
||||
<p class="bio-text">
|
||||
Cybersecurity student at the University of Alabama College of Engineering, focusing on network forensics, self-hosted infrastructure, and systems architecture.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<!-- D. Active Stack (Skills & Tech) -->
|
||||
<section class="stack-section">
|
||||
<h2 class="section-title">active_stack</h2>
|
||||
<div class="tag-cluster">
|
||||
<span class="tag">[#network-forensics]</span>
|
||||
<span class="tag">[#docker-traefik]</span>
|
||||
<span class="tag">[#arch-linux]</span>
|
||||
<span class="tag">[#neovim]</span>
|
||||
<span class="tag">[#wireguard]</span>
|
||||
<span class="tag">[#posix-sh]</span>
|
||||
<span class="tag">[#python]</span>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<hr class="section-divider">
|
||||
|
||||
<!-- E. Footer (Contact & Links) -->
|
||||
<footer class="footer-links">
|
||||
<a href="https://github.com" target="_blank" rel="noopener" class="footer-link">GitHub</a>
|
||||
<span class="pipe">|</span>
|
||||
<a href="mailto:river@example.com" class="footer-link">Email</a>
|
||||
<span class="pipe">|</span>
|
||||
<a href="#" class="footer-link">PGP Key</a>
|
||||
<span class="pipe">|</span>
|
||||
<a href="index.html" class="footer-link">Spec Catalog</a>
|
||||
</footer>
|
||||
|
||||
</main>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user