Add CSS for tables - h/t Luiz Amaral
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-05 23:10:36 +02:00
parent 7f73540fd7
commit b576a15a30

View File

@ -21,6 +21,8 @@ $code-text: #f8f8f2;
$ipng-orange: #f46524; $ipng-orange: #f46524;
$ipng-darkorange: #8c1919; $ipng-darkorange: #8c1919;
$ipng-lightorange: #fb8c00; $ipng-lightorange: #fb8c00;
$table-header-background: #ffdcca;
$table-cell-background: #fafafa;
// Breakpoints // Breakpoints
$bp-mini: 28em; // 288px $bp-mini: 28em; // 288px
@ -746,3 +748,28 @@ cite {
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;
} }
table {
margin-bottom: 1em;
width: 100%;
text-align: left;
border-collapse: separate;
border-radius: 1em;
border: 2px solid $ipng-orange;
tr {
&:nth-child(even) {
background-color: darken($table-cell-background, 10%);
}
}
th, td {
padding: 0.15em 0.5em;
}
th {
color: $ipng-orange;
background-color: lighten($table-header-background, 3%);
border-bottom: 3px solid $ipng-orange;
font-weight: bold;
}
td {
}
}