html-test/style.css

50 lines
997 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@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 */