Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -197,4 +197,26 @@ pre {
|
|
| 197 |
.table-dark th, .table-dark td {
|
| 198 |
border-color: #00ffcc;
|
| 199 |
padding: 20px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 200 |
}
|
|
|
|
| 197 |
.table-dark th, .table-dark td {
|
| 198 |
border-color: #00ffcc;
|
| 199 |
padding: 20px;
|
| 200 |
+
}
|
| 201 |
+
|
| 202 |
+
/* Specific fix for Usage section to prevent grey-on-grey */
|
| 203 |
+
.usage-text {
|
| 204 |
+
color: #ffffff !important; /* Ensure white text on dark background */
|
| 205 |
+
}
|
| 206 |
+
|
| 207 |
+
.usage-light {
|
| 208 |
+
color: #000000 !important; /* Ensure black text on light background */
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
#usage .card.bg-ghost-light .card-body {
|
| 212 |
+
background: #e0e0e0 !important; /* Light background for contrast */
|
| 213 |
+
color: #000000 !important; /* Black text for readability */
|
| 214 |
+
}
|
| 215 |
+
|
| 216 |
+
#usage ol, #usage ul {
|
| 217 |
+
color: #ffffff !important; /* White text for list items on dark sections */
|
| 218 |
+
}
|
| 219 |
+
|
| 220 |
+
#usage .card.bg-ghost-light ol, #usage .card.bg-ghost-light ul {
|
| 221 |
+
color: #000000 !important; /* Black text for list items on light cards */
|
| 222 |
}
|