style: Enhance table styling to improve visual distinction of shaded rows

This commit is contained in:
Paul Gauthier (aider) 2024-09-26 08:12:19 -07:00
parent ac9d46c1f7
commit bc1559fbc9

View file

@ -15,7 +15,21 @@ Here's a table containing the benchmark data for different model configurations:
<style>
.shaded {
background-color: #f0f0f0;
background-color: #e0e0e0;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #f2f2f2;
}
</style>