
You can use the 'tableofcontents' front matter option to enable or disable the display of a table of contents. Setting this option will override the new site-wide parameter 'tableofcontentswordcount' which will automatically add a table of contents on pages with more than the specified number of words. Set to '0' to always show a table of contents, or set to '-1' to never show a table of contents (the default behaviour).
66 lines
997 B
CSS
66 lines
997 B
CSS
@import url("dark-chroma.css");
|
|
|
|
a {
|
|
color: #A1A1EA;
|
|
}
|
|
|
|
.highlight > * {
|
|
border-color: #505050;
|
|
}
|
|
|
|
:not(pre) > code {
|
|
/* inline code elements */
|
|
background-color: rgba(90, 90, 90, 0.25);
|
|
}
|
|
|
|
a > code {
|
|
background-color: rgba(65, 65, 170, 0.3);
|
|
}
|
|
|
|
body {
|
|
color: rgb(210, 210, 210);
|
|
background-color: rgb(25, 25, 25);
|
|
}
|
|
|
|
blockquote {
|
|
color: rgb(170, 170, 170);
|
|
border-left: 0.25em solid #444;
|
|
}
|
|
|
|
.color-adapting-image {
|
|
filter: invert(80%);
|
|
}
|
|
|
|
.header {
|
|
background-color: rgb(40, 40, 40); /* still want a background color before the image loads */
|
|
background-image: url(../../images/header-bg-dark.jpg);
|
|
}
|
|
|
|
.main {
|
|
background-color: rgb(12, 12, 12);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.footer {
|
|
color: rgb(160, 160, 160);
|
|
}
|
|
|
|
.title-header-date {
|
|
color: rgb(150, 150, 150);
|
|
}
|
|
|
|
.title-list-date {
|
|
color: rgb(150, 150, 150);
|
|
}
|
|
|
|
.table-of-contents {
|
|
border-color: #505050;
|
|
background-color: #1A1A1A;
|
|
}
|
|
|
|
@media only screen and (max-width: 400pt) {
|
|
.links {
|
|
background-color: rgb(30, 30, 30);
|
|
}
|
|
}
|