Spaces:
Build error
Build error
update
Browse files- static/overview.html +36 -15
static/overview.html
CHANGED
|
@@ -27,22 +27,43 @@
|
|
| 27 |
color: #3498db;
|
| 28 |
}
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
|
|
|
|
|
|
| 45 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
|
| 47 |
</style>
|
| 48 |
</head>
|
|
|
|
| 27 |
color: #3498db;
|
| 28 |
}
|
| 29 |
|
| 30 |
+
@media (prefers-color-scheme: dark) {
|
| 31 |
+
.highlight {
|
| 32 |
+
display: inline-block;
|
| 33 |
+
background-color: #333; /* Background color of the box */
|
| 34 |
+
color: #ffffff !important; /* Text color */
|
| 35 |
+
padding: 2px 5px; /* Padding inside the box */
|
| 36 |
+
border-radius: 5px; /* Rounded corners */
|
| 37 |
+
border: 1px solid rgba(0, 0, 0, 0.2); /* Border (optional for added effect) */
|
| 38 |
+
}
|
| 39 |
+
.button {
|
| 40 |
+
display: inline-block;
|
| 41 |
+
background-color: #f97316; /* Background color of the box */
|
| 42 |
+
color: #f39c12 !important; /* Text color */
|
| 43 |
+
padding: 2px 5px; /* Padding inside the box */
|
| 44 |
+
border-radius: 5px; /* Rounded corners */
|
| 45 |
+
border: 1px solid rgba(0, 0, 0, 0.2); /* Border (optional for added effect) */
|
| 46 |
+
}
|
| 47 |
}
|
| 48 |
+
|
| 49 |
+
@media (prefers-color-scheme: light) {
|
| 50 |
+
.highlight {
|
| 51 |
+
display: inline-block;
|
| 52 |
+
background-color: #ffe8ef; /* Background color of the box */
|
| 53 |
+
color: #C01343 !important; /* Text color */
|
| 54 |
+
padding: 2px 5px; /* Padding inside the box */
|
| 55 |
+
border-radius: 5px; /* Rounded corners */
|
| 56 |
+
border: 1px solid rgba(0, 0, 0, 0.2); /* Border (optional for added effect) */
|
| 57 |
+
}
|
| 58 |
+
.button {
|
| 59 |
+
display: inline-block;
|
| 60 |
+
background-color: #fdba74; /* Background color of the box */
|
| 61 |
+
color: #ea580c !important; /* Text color */
|
| 62 |
+
padding: 2px 5px; /* Padding inside the box */
|
| 63 |
+
border-radius: 5px; /* Rounded corners */
|
| 64 |
+
border: 1px solid rgba(0, 0, 0, 0.2); /* Border (optional for added effect) */
|
| 65 |
+
}
|
| 66 |
+
}
|
| 67 |
|
| 68 |
</style>
|
| 69 |
</head>
|