Skip to content

Commit c09dc76

Browse files
fixes?
1 parent d55b7ed commit c09dc76

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h2>WRAVEN: Student-run cybersecurity group @ WMU</h2>
115115
<!-- Contact -->
116116
<section id="contact" class="grid-item">
117117
<div class="section-title">Contact</div>
118-
<p style="margin-bottom: 1.5rem; color: var(--muted-color);">
118+
<p class="contact-description">
119119
student, builder, hacker, dreamer!
120120
</p>
121121
<div class="contact-links">
@@ -153,8 +153,8 @@ <h2>WRAVEN: Student-run cybersecurity group @ WMU</h2>
153153
</div>
154154
</main>
155155

156-
<footer style="display: flex; justify-content: center; align-items: center; padding: 2rem; color: var(--muted-color); border-top: 1px solid var(--border-color); margin-top: 2rem;">
157-
<p style="margin: 0; font-family: var(--font-mono); text-align: center;">&copy; <span id="currentYear"></span> Lochlan McElroy. All rights reserved.</p>
156+
<footer>
157+
<p>&copy; <span id="currentYear"></span> Lochlan McElroy. All rights reserved.</p>
158158
</footer>
159159

160160
<script src="/scroll-fix.js"></script>

script2.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

style.css

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
font-size: 0.9rem;
247247
}
248248
.terminal-output {
249-
height: 640px;
249+
height: 615px;
250250
overflow-y: auto;
251251
margin-bottom: 0.5rem;
252252
line-height: 1.4;
@@ -464,3 +464,26 @@
464464
height: 200px;
465465
}
466466
}
467+
468+
/* Footer styles */
469+
footer {
470+
display: flex;
471+
justify-content: center;
472+
align-items: center;
473+
padding: 2rem;
474+
color: var(--muted-color);
475+
border-top: 1px solid var(--border-color);
476+
margin-top: 2rem;
477+
}
478+
479+
footer p {
480+
margin: 0;
481+
font-family: var(--font-mono);
482+
text-align: center;
483+
}
484+
485+
/* Contact section inline style fix */
486+
.contact-description {
487+
margin-bottom: 1.5rem;
488+
color: var(--muted-color);
489+
}

0 commit comments

Comments
 (0)