LoveIt/assets/css/_partial/_single/_toc.scss

152 lines
2.5 KiB
SCSS
Raw Normal View History

2020-02-21 04:11:56 +01:00
#toc-auto {
2020-01-31 15:53:04 +01:00
display: block;
position: absolute;
2020-02-21 04:11:56 +01:00
width: 100%;
margin-left: 1000px;
2020-02-02 07:43:29 +01:00
padding: 0 .8rem;
2020-01-31 15:53:04 +01:00
border-left: 1px solid $global-border-color;
overflow-wrap: break-word;
2020-01-31 15:53:04 +01:00
box-sizing: border-box;
2020-02-21 04:11:56 +01:00
top: if($header-normal-mode-desktop, 7rem, 12rem);
2020-01-31 15:53:04 +01:00
.dark-theme & {
border-left: 1px solid $global-border-color-dark;
}
2020-02-21 04:11:56 +01:00
.toc-title {
2020-01-31 15:53:04 +01:00
font-weight: 400;
2020-02-02 07:43:29 +01:00
margin: .8rem 0;
2020-01-31 15:53:04 +01:00
text-transform: uppercase;
}
2020-02-21 04:11:56 +01:00
.toc-content {
2020-01-31 15:53:04 +01:00
&.always-active ul {
display: block;
}
>nav>ul {
margin: .625rem 0;
}
ul {
text-indent: -0.85rem;
padding-left: .625rem;
list-style: none;
a::before {
content: "|";
font-weight: bolder;
margin-right: .5rem;
2020-02-13 18:30:33 +01:00
color: $single-link-color;
2020-01-31 15:53:04 +01:00
.dark-theme & {
2020-02-13 18:30:33 +01:00
color: $single-link-color-dark;
2020-01-31 15:53:04 +01:00
}
}
ul {
padding-left: 1.25rem;
display: none;
}
.has-active > ul {
display: block;
}
}
a.active {
2020-01-31 15:53:04 +01:00
font-weight: bold;
color: $single-link-color;
2020-01-31 15:53:04 +01:00
.dark-theme & {
color: $single-link-color-dark;
2020-01-31 15:53:04 +01:00
}
&::before {
2020-02-13 18:30:33 +01:00
color: $single-link-hover-color;
2020-01-31 15:53:04 +01:00
.dark-theme & {
2020-02-13 18:30:33 +01:00
color: $single-link-hover-color-dark;
2020-01-31 15:53:04 +01:00
}
}
}
}
}
2020-02-21 04:11:56 +01:00
#toc-static {
2020-01-31 15:53:04 +01:00
display: none;
padding-top: .8rem;
details {
summary {
2020-02-21 04:11:56 +01:00
.toc-title {
2020-01-31 15:53:04 +01:00
display: block;
display: flex;
justify-content: space-between;
font-size: 1.2em;
font-weight: bold;
line-height: 2em;
padding: 0 .625rem;
background: $code-background-color;
i.details {
line-height: 2em;
}
.dark-theme & {
background: $code-background-color-dark;
}
}
&::-webkit-details-marker {
display: none;
}
}
}
details[open] {
i.details {
transform: rotate(180deg);
}
}
2020-02-21 04:11:56 +01:00
.toc-content {
2020-01-31 15:53:04 +01:00
border: 2px solid $code-background-color;
>nav>ul {
margin: .625rem 0;
}
ul {
padding-left: .625rem;
list-style: none;
ul {
padding-left: 1.25rem;
}
}
.dark-theme & {
border: 2px solid $code-background-color-dark;
}
}
}
.toc {
ruby {
background: $code-background-color;
rt {
color: $global-font-secondary-color;
}
.dark-theme & {
background: $code-background-color-dark;
rt {
color: $global-font-secondary-color-dark;
}
}
}
}