27 lines
431 B
SCSS
27 lines
431 B
SCSS
/* Styles for tables */
|
|
figure.wp-block-table table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
margin-top: 1.25rem;
|
|
margin-bottom: 1.25rem;
|
|
|
|
thead {
|
|
background-color: #f8f9fa;
|
|
color: #000;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #dee2e6;
|
|
padding: 0.5rem;
|
|
text-align: left;
|
|
}
|
|
|
|
th {
|
|
background-color: #f1f3f5;
|
|
font-weight: bold;
|
|
}
|
|
|
|
tbody tr:nth-child(odd) {
|
|
background-color: #f9f9f9;
|
|
}
|
|
} |