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.

34 lines
438 B
CSS

table,
td,
th {
border-collapse: collapse;
}
.list-pagination {
display: grid;
grid-template-columns: 1fr min-content 1fr;
grid-column-gap: 1rem;
margin-bottom: 0.5rem;
}
.list-pagination__left {
text-align: right;
}
thead th {
background-color: #ddd;
border-style: solid;
border-width: 1px 0 1px 0;
border-color: #777;
padding: 9px 7px;
font-size: 14px;
}
tr:hover {
background-color: #ccc;
}
td {
padding: 2px 8px;
}