html-test/style.css

50 lines
997 B
CSS
Raw Normal View History

2023-05-07 20:05:00 +00:00
@charset "UTF-8";
#tracking .table {
display: grid;
grid-template-columns: 2rem repeat(4, auto);
align-items: center;
}
#tracking .table .hidden {
display: none;
}
#tracking .table .open-button::after {
content: "";
font-size: 13px;
color: #000;
float: right;
margin-right: 0.35rem;
}
#tracking .table .open-button.open::after {
content: "";
}
#tracking .table .open-button:hover {
cursor: pointer;
}
#tracking .table .details {
grid-column: 1/6;
padding: 0 18px;
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
#tracking .pagination div {
color: black;
float: left;
padding: 8px 16px;
text-decoration: none;
transition: background-color 0.3s;
}
#tracking .pagination div:hover {
cursor: pointer;
}
#tracking .pagination div:hover:not(.active) {
background-color: #ddd;
}
#tracking .pagination div.active {
background-color: #4caf50;
color: white;
}
/*# sourceMappingURL=style.css.map */