Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,11 +1,16 @@
|
|
| 1 |
/* 👻 GhostPack Spectral Styles 😈 */
|
| 2 |
body {
|
| 3 |
background: #0a0a0a; /* Deep black base */
|
| 4 |
-
color: #ffffff; /* Pure white text
|
| 5 |
font-family: 'Roboto', sans-serif;
|
| 6 |
overflow-x: hidden;
|
| 7 |
}
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
.bg-ghost-nav {
|
| 10 |
background: linear-gradient(90deg, #1a2a2e, #2e3b3e); /* Dark gradient */
|
| 11 |
box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3); /* Neon cyan shadow */
|
|
@@ -83,6 +88,18 @@ body {
|
|
| 83 |
padding: 1.2rem;
|
| 84 |
}
|
| 85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
.btn-ghost {
|
| 87 |
background: linear-gradient(45deg, #00ffcc, #00cc99); /* Neon gradient */
|
| 88 |
border: none;
|
|
@@ -129,7 +146,7 @@ pre {
|
|
| 129 |
}
|
| 130 |
|
| 131 |
.light-lead-text {
|
| 132 |
-
color: #e0e0e0; /* Light grey
|
| 133 |
}
|
| 134 |
|
| 135 |
.nav-tabs .nav-link {
|
|
@@ -183,5 +200,5 @@ pre {
|
|
| 183 |
}
|
| 184 |
|
| 185 |
.text-muted {
|
| 186 |
-
color: #cccccc !important; /* Light grey
|
| 187 |
}
|
|
|
|
| 1 |
/* 👻 GhostPack Spectral Styles 😈 */
|
| 2 |
body {
|
| 3 |
background: #0a0a0a; /* Deep black base */
|
| 4 |
+
color: #ffffff; /* Pure white text */
|
| 5 |
font-family: 'Roboto', sans-serif;
|
| 6 |
overflow-x: hidden;
|
| 7 |
}
|
| 8 |
|
| 9 |
+
h1, h2, h3, h4, h5, h6 {
|
| 10 |
+
color: #00ffcc; /* Neon cyan for all headings, high contrast */
|
| 11 |
+
text-shadow: 0 0 8px rgba(0, 255, 204, 0.5); /* Neon glow */
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
.bg-ghost-nav {
|
| 15 |
background: linear-gradient(90deg, #1a2a2e, #2e3b3e); /* Dark gradient */
|
| 16 |
box-shadow: 0 4px 12px rgba(0, 255, 204, 0.3); /* Neon cyan shadow */
|
|
|
|
| 88 |
padding: 1.2rem;
|
| 89 |
}
|
| 90 |
|
| 91 |
+
.bg-ghost-card h1,
|
| 92 |
+
.bg-ghost-card h2,
|
| 93 |
+
.bg-ghost-card h3,
|
| 94 |
+
.bg-ghost-card h4,
|
| 95 |
+
.bg-ghost-alt-card h1,
|
| 96 |
+
.bg-ghost-alt-card h2,
|
| 97 |
+
.bg-ghost-alt-card h3,
|
| 98 |
+
.bg-ghost-alt-card h4 {
|
| 99 |
+
color: #00ffcc; /* Neon cyan headings in cards */
|
| 100 |
+
text-shadow: 0 0 8px rgba(0, 255, 204, 0.5);
|
| 101 |
+
}
|
| 102 |
+
|
| 103 |
.btn-ghost {
|
| 104 |
background: linear-gradient(45deg, #00ffcc, #00cc99); /* Neon gradient */
|
| 105 |
border: none;
|
|
|
|
| 146 |
}
|
| 147 |
|
| 148 |
.light-lead-text {
|
| 149 |
+
color: #e0e0e0; /* Light grey, but contrasts with #2a3a3e (~4.5:1 ratio) */
|
| 150 |
}
|
| 151 |
|
| 152 |
.nav-tabs .nav-link {
|
|
|
|
| 200 |
}
|
| 201 |
|
| 202 |
.text-muted {
|
| 203 |
+
color: #cccccc !important; /* Light grey, contrasts with dark (~4.5:1) */
|
| 204 |
}
|