2025-04-11 21:35:57 +00:00
|
|
|
main .container {
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container {
|
2025-04-11 22:53:20 +00:00
|
|
|
max-width: 1300px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.columnSection {
|
|
|
|
|
padding: 20px 0 20px 0;
|
2025-04-11 22:53:20 +00:00
|
|
|
max-width: 1300px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
2025-04-12 15:05:08 +00:00
|
|
|
.historyButtonContainer {
|
2025-04-11 21:35:57 +00:00
|
|
|
width: 70%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-11 21:40:45 +00:00
|
|
|
.historySearchContainer {
|
2025-04-11 21:35:57 +00:00
|
|
|
width: 30%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
text-align: right;
|
|
|
|
|
}
|
|
|
|
|
|
2025-04-11 22:53:20 +00:00
|
|
|
.button-outer {
|
|
|
|
|
margin-right: 15px;
|
2025-04-12 15:05:08 +00:00
|
|
|
background: var(--history-link-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button-outer.active {
|
|
|
|
|
color: var(--navlink-color);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#currentButton {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
color: var(--white);
|
|
|
|
|
background: var(--link-color);
|
|
|
|
|
border-radius: 5px;
|
2025-04-11 22:53:20 +00:00
|
|
|
}
|
|
|
|
|
|
2025-04-11 21:35:57 +00:00
|
|
|
.historySearch {
|
2025-04-11 22:53:20 +00:00
|
|
|
vertical-align: -15px;
|
|
|
|
|
}
|
2025-04-11 21:35:57 +00:00
|
|
|
|
2025-04-11 22:53:20 +00:00
|
|
|
.searchButton {
|
|
|
|
|
vertical-align: -15px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.historyTable {
|
|
|
|
|
font-family: 'open-sans', sans-serif;
|
|
|
|
|
margin-bottom: 20px;
|
2025-04-11 22:53:20 +00:00
|
|
|
width: 100%;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
|
|
|
border-radius: 5px;
|
2025-04-11 21:35:57 +00:00
|
|
|
}
|
2025-04-11 22:54:58 +00:00
|
|
|
|
|
|
|
|
.dropdown-results {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 100%;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-height: 300px;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
background-color: white;
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
border-top: none;
|
|
|
|
|
z-index: 1000;
|
|
|
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-item {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-item:hover {
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|