html-test/style.css

84 lines
1.8 KiB
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;
}
2023-05-08 19:24:03 +00:00
#tracking .table .row {
display: contents;
}
#tracking .table .row:hover div {
cursor: pointer;
}
#tracking .table .row:not(.open):hover div {
background: whitesmoke;
2023-05-07 20:05:00 +00:00
}
2023-05-08 19:24:03 +00:00
#tracking .table .row.open .open-button::after {
content: "";
}
#tracking .table .row .open-button::after {
2023-05-07 20:05:00 +00:00
content: "";
font-size: 13px;
color: #000;
float: right;
margin-right: 0.35rem;
}
2023-05-08 19:24:03 +00:00
#tracking .table div {
position: relative;
display: flex;
align-items: center;
padding: 0.5rem 0;
2023-05-07 20:05:00 +00:00
}
2023-05-08 19:24:03 +00:00
#tracking .table div.header {
font-weight: bold;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: rgba(0, 0, 0, 0.1215686275);
}
#tracking .table .hidden {
display: none;
2023-05-07 20:05:00 +00:00
}
#tracking .table .details {
grid-column: 1/6;
2023-05-08 19:24:03 +00:00
box-sizing: border-box;
padding: 0;
2023-05-07 20:05:00 +00:00
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
2023-05-08 19:24:03 +00:00
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: rgba(0, 0, 0, 0.1215686275);
}
#tracking .table .details div {
padding: 2rem;
}
#tracking .page-navigation {
display: flex;
margin-top: 3rem;
justify-content: flex-end;
align-items: center;
}
#tracking .page-navigation .pagination {
margin-right: 2rem;
2023-05-07 20:05:00 +00:00
}
2023-05-08 19:24:03 +00:00
#tracking .page-navigation .pagination div {
2023-05-07 20:05:00 +00:00
color: black;
float: left;
padding: 8px 16px;
text-decoration: none;
transition: background-color 0.3s;
}
2023-05-08 19:24:03 +00:00
#tracking .page-navigation .pagination div:hover {
2023-05-07 20:05:00 +00:00
cursor: pointer;
}
2023-05-08 19:24:03 +00:00
#tracking .page-navigation .pagination div:hover:not(.active) {
2023-05-07 20:05:00 +00:00
background-color: #ddd;
}
2023-05-08 19:24:03 +00:00
#tracking .page-navigation .pagination div.active {
2023-05-07 20:05:00 +00:00
background-color: #4caf50;
color: white;
}
/*# sourceMappingURL=style.css.map */