welpo 275950f97d
💄 style: adjust font styles for <details> and <summary>
Serif in text body, sans serif in tables.
2023-08-12 17:05:09 +02:00

34 lines
610 B
SCSS

table {
border-spacing: 0;
border-collapse: collapse;
text-align: center;
font: inherit;
overflow: hidden;
border-style: hidden !important;
margin: 1rem auto;
border-radius: 5px;
th,
td {
padding: 6px 13px;
border: 1px solid var(--bg-1);
font-size: large;
}
thead tr {
background-color: var(--primary-color);
color: var(--hover-color);
}
tbody {
tr:nth-child(even) {
background-color: var(--bg-0);
}
}
details,
summary {
font-family: inherit !important;
}
}