1
0
Fork 0
ejv2.cc/themes/dead-simple/assets/css/tables.css
2024-08-01 06:21:40 +01:00

33 lines
445 B
CSS

/* TABLES */
table {
border-collapse: collapse;
display: block;
overflow: auto;
}
@media screen and (min-width: 760px) {
table {
display: table !important;
}
}
table thead th {
border: 1px solid var(--border-general);
}
th,
td {
padding: 4px 8px;
border: 1px solid rgb(200, 200, 200);
border: 1px solid var(--border-general);
}
th {
background-color: var(--table-th);
}
tr {
background-color: var(--table-tr);
}