Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -32,10 +32,28 @@ TEST_SETS = [
|
|
| 32 |
"overall consistency"
|
| 33 |
]
|
| 34 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
style = """
|
| 36 |
<style>
|
| 37 |
-
th {
|
| 38 |
-
font-size:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
}
|
| 40 |
</style>
|
| 41 |
"""
|
|
|
|
| 32 |
"overall consistency"
|
| 33 |
]
|
| 34 |
|
| 35 |
+
# style = """
|
| 36 |
+
# <style>
|
| 37 |
+
# th {
|
| 38 |
+
# font-size: 18px;
|
| 39 |
+
# font-family: Arial, sans-serif;
|
| 40 |
+
# text-transform: capitalize;
|
| 41 |
+
# }
|
| 42 |
+
# </style>
|
| 43 |
+
# """
|
| 44 |
style = """
|
| 45 |
<style>
|
| 46 |
+
th, td {
|
| 47 |
+
font-size: 18px;
|
| 48 |
+
font-family: Arial, sans-serif;
|
| 49 |
+
text-transform: capitalize;
|
| 50 |
+
text-align: center; /* Center-align text for headers and cells */
|
| 51 |
+
}
|
| 52 |
+
table {
|
| 53 |
+
width: 100%; /* Optional: makes the table take full width */
|
| 54 |
+
margin-left: auto;
|
| 55 |
+
margin-right: auto;
|
| 56 |
+
text-align: center;
|
| 57 |
}
|
| 58 |
</style>
|
| 59 |
"""
|