_Footer.md
... ...
@@ -1,2 +1,9 @@
1
-`[ root@belpanino ]# I've been stuck editing this wiki for three days because I forgot how to :wq!`.
2
-**Quick Links:** [[Homelab]] | [[Uni Notes]] | [[InfoSec]]
1
+<div class="wiki-footer">
2
+ <div class="terminal-banner">
3
+ <span class="prompt">[ root@belpanino ]#</span> I've been stuck editing this wiki for three days because I forgot how to <span class="cmd">:wq!</span>
4
+ </div>
5
+
6
+ <div class="quick-links">
7
+ <strong>Quick Links:</strong> [[Homelab]] | [[Uni Notes]] | [[InfoSec]]
8
+ </div>
9
+</div>
custom.css
... ...
@@ -0,0 +1,55 @@
1
+/* --- Custom Wiki Footer --- */
2
+.wiki-footer {
3
+ margin-top: 50px;
4
+ border-top: 1px solid #e1e4e8;
5
+ padding-top: 20px;
6
+}
7
+
8
+/* Terminal Joke Styling */
9
+.terminal-banner {
10
+ background-color: #1e1e1e; /* Dark terminal background */
11
+ color: #cccccc;
12
+ font-family: "Courier New", Courier, monospace;
13
+ padding: 12px 16px;
14
+ border-radius: 6px;
15
+ margin-bottom: 15px;
16
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
17
+ font-size: 0.9em;
18
+}
19
+
20
+.terminal-banner .prompt {
21
+ color: #4af626; /* Hacker green for the root prompt */
22
+ font-weight: bold;
23
+}
24
+
25
+.terminal-banner .cmd {
26
+ background-color: #333333;
27
+ padding: 2px 5px;
28
+ border-radius: 3px;
29
+ color: #fce566; /* Yellow to make the Vim command pop */
30
+}
31
+
32
+/* Quick Links Styling */
33
+.quick-links {
34
+ text-align: center;
35
+ background-color: #f6f8fa; /* Light gray box */
36
+ padding: 12px;
37
+ border-radius: 6px;
38
+ border: 1px solid #d1d5da;
39
+ font-size: 0.95em;
40
+ color: #24292e;
41
+}
42
+
43
+/* Targeting Gollum's auto-generated link classes */
44
+.quick-links a.internal {
45
+ color: #0366d6;
46
+ text-decoration: none;
47
+ font-weight: 600;
48
+ margin: 0 8px;
49
+ transition: color 0.2s ease;
50
+}
51
+
52
+.quick-links a.internal:hover {
53
+ color: #005cc5;
54
+ text-decoration: underline;
55
+}