diff --git a/index.html b/index.html index d033ec9..0e5d063 100644 --- a/index.html +++ b/index.html @@ -47,6 +47,7 @@ border-bottom: 2px solid var(--primary-color); margin-bottom: 2rem; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); + margin-top: 0; } .hero-title { @@ -264,6 +265,43 @@ ::-webkit-scrollbar-thumb:hover { background: #4f4f4f; } + + /* Add these new styles */ + .top-nav { + background: #252526; + border-bottom: 1px solid #333; + padding: 1rem; + position: sticky; + top: 0; + z-index: 1000; + display: flex; + justify-content: center; + gap: 2rem; + } + + .nav-link { + color: var(--text-color); + text-decoration: none; + padding: 0.5rem 1rem; + border-radius: 4px; + transition: all 0.2s; + font-family: 'JetBrains Mono', monospace; + } + + .nav-link:hover { + background: #333; + color: var(--primary-color); + } + + .nav-link.active { + background: var(--primary-color); + color: var(--bg-color); + } + + /* Hide the old nav */ + #nav-path { + display: none; + } +
+ Home + Calculator Class + Source Files + Class List + GitHub +