2023-04-07 23:18:45 -05:00
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-right: 1px solid #848586;
|
|
|
|
|
padding: 1rem;
|
2023-04-17 21:54:11 -05:00
|
|
|
overflow: auto;
|
|
|
|
|
scrollbar-color: transparent #0b3766;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-18 22:51:50 -05:00
|
|
|
@media screen and (max-width: 1000px) {
|
|
|
|
|
.container {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-17 21:54:11 -05:00
|
|
|
.container::-webkit-scrollbar {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container:hover::-webkit-scrollbar-thumb {
|
|
|
|
|
background-color: #0b3766;
|
2023-04-07 23:18:45 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-18 22:51:50 -05:00
|
|
|
.container::-webkit-scrollbar-corner {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-14 22:35:40 -05:00
|
|
|
.link {
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-07 23:18:45 -05:00
|
|
|
.title {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
white-space: nowrap;
|
2023-04-09 00:24:42 -05:00
|
|
|
margin-bottom: 1rem;
|
2023-04-07 23:18:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.onspring {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.api {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #ee7203;
|
2023-04-09 00:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.list {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
white-space: nowrap;
|
2023-04-11 15:52:48 -05:00
|
|
|
width: 100%;
|
2023-04-09 00:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.listItem {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: flex-start;
|
2023-04-11 15:52:48 -05:00
|
|
|
gap: 0.25rem;
|
2023-04-09 00:24:42 -05:00
|
|
|
cursor: pointer;
|
2023-04-11 15:52:48 -05:00
|
|
|
padding-left: 0.5rem;
|
|
|
|
|
margin-right: 1rem;
|
|
|
|
|
width: 100%;
|
2023-04-09 00:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-11 15:52:48 -05:00
|
|
|
.link,
|
|
|
|
|
.activeLink {
|
2023-04-09 00:24:42 -05:00
|
|
|
text-decoration: none;
|
|
|
|
|
color: #a3acb9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link:hover {
|
|
|
|
|
color: white;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-11 15:52:48 -05:00
|
|
|
.activeLink {
|
|
|
|
|
background-color: #1e1e1e;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-09 00:24:42 -05:00
|
|
|
.expandable {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2023-04-11 15:52:48 -05:00
|
|
|
gap: 3rem;
|
2023-04-18 22:51:50 -05:00
|
|
|
flex: 1 1 auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chevronContainer {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2023-04-09 00:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.chevron {
|
|
|
|
|
margin-left: 0.5rem;
|
2023-04-07 23:18:45 -05:00
|
|
|
}
|