custom.css
... ...
@@ -1,48 +1,49 @@
1
-/* --- Custom Wiki Footer --- */
1
+/* --- Custom Wiki Footer (Light Theme) --- */
2 2
.wiki-footer {
3 3
margin-top: 50px;
4
- border-top: 1px solid #e1e4e8;
4
+ border-top: 1px solid #eaecef;
5 5
padding-top: 20px;
6 6
}
7 7
8
-/* Terminal Joke Styling */
8
+/* Light Terminal Joke Styling */
9 9
.terminal-banner {
10
- background-color: #1e1e1e; /* Dark terminal background */
11
- color: #cccccc;
10
+ background-color: #f6f8fa; /* Soft light gray background */
11
+ color: #24292e; /* Dark text for readability */
12 12
font-family: "Courier New", Courier, monospace;
13 13
padding: 12px 16px;
14 14
border-radius: 6px;
15 15
margin-bottom: 15px;
16
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
16
+ border: 1px solid #d1d5da; /* Crisp border instead of a heavy drop shadow */
17 17
font-size: 0.9em;
18 18
}
19 19
20 20
.terminal-banner .prompt {
21
- color: #4af626; /* Hacker green for the root prompt */
21
+ color: #22863a; /* Darker, high-contrast green for the root prompt */
22 22
font-weight: bold;
23 23
}
24 24
25 25
.terminal-banner .cmd {
26
- background-color: #333333;
26
+ background-color: #e1e4e8;
27 27
padding: 2px 5px;
28 28
border-radius: 3px;
29
- color: #fce566; /* Yellow to make the Vim command pop */
29
+ color: #b31d28; /* Deep red to make the Vim command pop against the light gray */
30
+ font-weight: bold;
30 31
}
31 32
32 33
/* Quick Links Styling */
33 34
.quick-links {
34 35
text-align: center;
35
- background-color: #f6f8fa; /* Light gray box */
36
+ background-color: #ffffff; /* Clean white box */
36 37
padding: 12px;
37 38
border-radius: 6px;
38
- border: 1px solid #d1d5da;
39
+ border: 1px solid #eaecef;
39 40
font-size: 0.95em;
40 41
color: #24292e;
41 42
}
42 43
43 44
/* Targeting Gollum's auto-generated link classes */
44 45
.quick-links a.internal {
45
- color: #0366d6;
46
+ color: #0366d6; /* Classic clean blue link */
46 47
text-decoration: none;
47 48
font-weight: 600;
48 49
margin: 0 8px;