Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
BorjaOteroFerreira committed Feb 16, 2024
2 parents 9ceb327 + 8ad863a commit 2baf3a6
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions static/styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -436,23 +436,36 @@ code{
table{
width: 100%;
border-collapse: collapse;
border: 1px solid #ccc;
border-radius:5px;


}
tbody{
border-top-left-radius: 5px;
border-top-right-radius: 5px;

}
table th {
background-color: var(--secondary-color);
-webkit-text-fill-color: var(--secondary-bg-color);
}
table thead {
border-color:var(--primary-color)!important;
text-align: center;
border-top-left-radius: 5px;
border-top-right-radius: 5px;


}

th:first-child {
border-top-left-radius: 5px; /* Borde redondeado en la esquina superior izquierda */
border-left:3px;
}

th:last-child {
border-right:3px;
border-top-right-radius: 5px; /* Borde redondeado en la esquina superior derecha */
}
table tr:nth-child(even) {
background-color: var(--primary-bg-color);


}


Expand Down

0 comments on commit 2baf3a6

Please sign in to comment.