2023-07-31 21:43:41 +00:00
|
|
|
.TableOfContentsFixedWrapper {
|
2023-08-14 14:48:27 +00:00
|
|
|
min-height: 100%;
|
2023-08-23 22:31:39 +00:00
|
|
|
top: 0;
|
2023-07-31 21:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsFixedWrapperLefted {
|
|
|
|
right: auto;
|
2023-08-14 14:48:27 +00:00
|
|
|
left: 70px;
|
2023-07-31 21:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsContainer {
|
2023-08-14 14:48:27 +00:00
|
|
|
position: sticky;
|
2023-08-23 22:31:39 +00:00
|
|
|
top: 100px;
|
2023-08-14 14:48:27 +00:00
|
|
|
right: 20px;
|
2023-07-31 21:43:41 +00:00
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
2023-08-23 22:31:39 +00:00
|
|
|
height: calc(100vh - 250px);
|
|
|
|
overflow: auto;
|
2023-07-31 21:43:41 +00:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeader {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeading {
|
|
|
|
margin: 0;
|
|
|
|
color: #000;
|
|
|
|
font-size: 22px;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 700;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsPrimaryButton {
|
|
|
|
position: absolute;
|
2023-08-23 22:31:39 +00:00
|
|
|
right: 0;
|
2023-07-31 21:43:41 +00:00
|
|
|
top: 10px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsPrimaryButtonLefted {
|
|
|
|
right: auto;
|
2023-08-23 22:31:39 +00:00
|
|
|
left: 0;
|
2023-07-31 21:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeadingsList {
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
list-style-type: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 38px 0 0;
|
2023-08-14 14:48:27 +00:00
|
|
|
width: 100%;
|
2023-07-31 21:43:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeadingsItem {
|
|
|
|
margin-top: 20px;
|
|
|
|
color: #000;
|
|
|
|
font-size: 14px;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: left;
|
|
|
|
letter-spacing: -0.14px;
|
|
|
|
|
|
|
|
&:hover {
|
2023-08-14 14:48:27 +00:00
|
|
|
color: rgb(0 0 0 / 50%);
|
2023-07-31 21:43:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeadingsItemH3,
|
|
|
|
.TableOfContentsHeadingsItemH4 {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeadingsItemH3 {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.TableOfContentsHeadingsItemH4 {
|
|
|
|
padding-left: 16px;
|
|
|
|
}
|