hello-friend-ng/assets/scss/_tables.scss

46 lines
1.1 KiB
SCSS

.post-content {
table {
border-collapse: collapse;
margin: 25px 0;
margin-left: auto;
margin-right: auto;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
table thead tr {
background-color: $light-border-color;
color: $light-color;
text-align: left;
.dark-theme & {
background-color: $dark-border-color;
color: $dark-color
}
}
th, td {
padding: 12px 15px;
}
tbody tr {
border-bottom: 1px solid $light-border-color;
.dark-theme & {
border-bottom: 1px solid $dark-border-color;
}
}
// tbody tr:nth-of-type(even) {
// background-color: $light-background-secondary;
// .dark-theme & {
// background-color: $dark-background-secondary;
// }
// }
tbody tr:last-of-type {
border-bottom: 2px solid $light-border-color;
.dark-theme & {
border-bottom: 2px solid $dark-border-color;
}
}
}