Spaces:
Sleeping
Sleeping
Update styles.css
Browse files- styles.css +3 -12
styles.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
| 1 |
|
| 2 |
/* styles.css */
|
| 3 |
/* Your CSS styles for the table */
|
| 4 |
-
table {
|
| 5 |
border-collapse: collapse;
|
| 6 |
width: 100%;
|
| 7 |
table-layout: fixed;
|
| 8 |
}
|
| 9 |
|
| 10 |
-
th, td {
|
| 11 |
padding: 8px;
|
| 12 |
border: 1px solid black;
|
| 13 |
text-align: center;
|
|
@@ -15,16 +15,7 @@ th, td {
|
|
| 15 |
box-sizing: border-box; /* Include padding in width calculation */
|
| 16 |
}
|
| 17 |
|
| 18 |
-
th {
|
| 19 |
background-color: #f2f2f2;
|
| 20 |
font-weight: bold;
|
| 21 |
}
|
| 22 |
-
.timestamp {
|
| 23 |
-
background-color: rgb(255, 0, 0);
|
| 24 |
-
color: rgb(128, 128, 128);
|
| 25 |
-
}
|
| 26 |
-
|
| 27 |
-
.original {
|
| 28 |
-
background-color: rgb(0, 0, 0);
|
| 29 |
-
color: rgb(255, 255, 255);
|
| 30 |
-
}
|
|
|
|
| 1 |
|
| 2 |
/* styles.css */
|
| 3 |
/* Your CSS styles for the table */
|
| 4 |
+
div[data-testid="stHorizontalBlock"] table {
|
| 5 |
border-collapse: collapse;
|
| 6 |
width: 100%;
|
| 7 |
table-layout: fixed;
|
| 8 |
}
|
| 9 |
|
| 10 |
+
div[data-testid="stHorizontalBlock"] th, div[data-testid="stHorizontalBlock"] td {
|
| 11 |
padding: 8px;
|
| 12 |
border: 1px solid black;
|
| 13 |
text-align: center;
|
|
|
|
| 15 |
box-sizing: border-box; /* Include padding in width calculation */
|
| 16 |
}
|
| 17 |
|
| 18 |
+
div[data-testid="stHorizontalBlock"] th {
|
| 19 |
background-color: #f2f2f2;
|
| 20 |
font-weight: bold;
|
| 21 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|