mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 18:54:59 +00:00
style: Enhance table styling to improve visual distinction of shaded rows
This commit is contained in:
parent
ac9d46c1f7
commit
bc1559fbc9
1 changed files with 15 additions and 1 deletions
|
@ -15,7 +15,21 @@ Here's a table containing the benchmark data for different model configurations:
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.shaded {
|
.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>
|
</style>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue