Spaces:
Sleeping
Sleeping
Update styles.css
Browse files- styles.css +11 -0
styles.css
CHANGED
|
@@ -19,3 +19,14 @@ div[data-testid="stHorizontalBlock"] th {
|
|
| 19 |
background-color: #f2f2f2;
|
| 20 |
font-weight: bold;
|
| 21 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
background-color: #f2f2f2;
|
| 20 |
font-weight: bold;
|
| 21 |
}
|
| 22 |
+
|
| 23 |
+
/* Apply specific colors to the Timestamp and Original columns */
|
| 24 |
+
div[data-testid="stHorizontalBlock"] td.timestamp {
|
| 25 |
+
background-color: red;
|
| 26 |
+
color: white; /* Adjust text color for better contrast */
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
div[data-testid="stHorizontalBlock"] td.original {
|
| 30 |
+
background-color: blue;
|
| 31 |
+
color: white; /* Adjust text color for better contrast */
|
| 32 |
+
}
|