Add links

This commit is contained in:
2026-03-16 11:09:22 -05:00
parent abebc25d0d
commit 62b0ecf15a
3 changed files with 27 additions and 0 deletions
+4
View File
@@ -9,6 +9,10 @@
<body> <body>
<header> <header>
<h1>Firewall issues tool</h1> <h1>Firewall issues tool</h1>
<nav class="top-links" aria-label="Primary">
<a href="process.html">Add more data</a>
<a href="https://github.com/aaronaxvig/firewallissues" target="_blank" rel="noopener noreferrer">Source code</a>
</nav>
</header> </header>
<main class="container"> <main class="container">
<aside class="sidebar"> <aside class="sidebar">
+4
View File
@@ -91,6 +91,10 @@
<body> <body>
<header> <header>
<h1>Process Issues</h1> <h1>Process Issues</h1>
<nav class="top-links" aria-label="Primary">
<a href="index.html">Back to main page</a>
<a href="https://github.com/aaronaxvig/firewallissues" target="_blank">Source Code</a>
</nav>
</header> </header>
<main> <main>
<div class="process-container"> <div class="process-container">
+19
View File
@@ -15,6 +15,25 @@ header {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} }
.top-links {
margin-top: 10px;
display: flex;
gap: 25px;
flex-wrap: wrap;
}
.top-links a {
color: #dbe9f5;
text-decoration: none;
font-size: 14px;
}
.top-links a:hover,
.top-links a:focus {
color: #ffffff;
text-decoration: underline;
}
h1 { h1 {
margin: 0; margin: 0;
} }