You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
531 B
SCSS

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