philomena/assets/css/elements/table.css

27 lines
484 B
CSS
Raw Normal View History

2023-11-23 17:07:49 +01:00
.table {
border-collapse: collapse;
width: 100%;
}
2024-04-17 16:52:50 +02:00
.table > thead {
border-radius: var(--border-radius-inner);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
.table > tbody {
border-radius: var(--border-radius-inner);
border-top-left-radius: 0;
border-top-right-radius: 0;
}
2023-11-23 17:07:49 +01:00
.table td, th {
padding: var(--padding-small);
border: 1px solid var(--secondary-muted-color);
text-align: left;
}
.table th {
background: var(--secondary-color);
}