2023-04-07 23:18:45 -05:00
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-right: 1px solid #848586;
|
2023-04-20 23:36:52 -05:00
|
|
|
padding: 0 1rem;
|
2023-04-17 21:54:11 -05:00
|
|
|
overflow: auto;
|
2023-04-20 23:36:52 -05:00
|
|
|
background-color: inherit;
|
2023-04-21 11:02:07 -05:00
|
|
|
width: 300px;
|
2023-04-17 21:54:11 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-18 22:51:50 -05:00
|
|
|
@media screen and (max-width: 1000px) {
|
|
|
|
|
.container {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-14 22:35:40 -05:00
|
|
|
.link {
|
|
|
|
|
text-decoration: none;
|
2023-04-21 11:02:07 -05:00
|
|
|
cursor: pointer;
|
2023-04-14 22:35:40 -05:00
|
|
|
}
|
|
|
|
|
|
2023-04-20 23:36:52 -05:00
|
|
|
.titleContainer {
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
background-color: inherit;
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.link:hover {
|
2023-04-20 23:36:52 -05:00
|
|
|
color: #64adac;
|
2023-04-09 00:24:42 -05:00
|
|
|
}
|
|
|
|
|
|
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-20 23:36:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.switch {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 60px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.switch input {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider {
|
|
|
|
|
position: absolute;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background-color: #ccc;
|
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
|
transition: .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider:before {
|
|
|
|
|
text-align: center;
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: "";
|
|
|
|
|
height: 12px;
|
|
|
|
|
width: 12px;
|
|
|
|
|
left: 4px;
|
|
|
|
|
bottom: 4px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
-webkit-transition: .4s;
|
|
|
|
|
transition: .4s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:checked+.slider {
|
2023-04-21 09:40:29 -05:00
|
|
|
background-color: #64adac;
|
2023-04-20 23:36:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:focus+.slider {
|
2023-04-21 09:40:29 -05:00
|
|
|
box-shadow: 0 0 1px #64adac;
|
2023-04-20 23:36:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input:checked+.slider:before {
|
|
|
|
|
-webkit-transform: translateX(40px);
|
|
|
|
|
-ms-transform: translateX(40px);
|
|
|
|
|
transform: translateX(40px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider.round {
|
|
|
|
|
border-radius: 34px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.slider.round:before {
|
|
|
|
|
border-radius: 50%;
|
2023-04-07 23:18:45 -05:00
|
|
|
}
|