Mylloon
9dfcc1101d
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
feat: Basic support for new `/cours` endpoint (not ready for release yet), see commit description for more - Basic /cours support - Fix LaTeX support (see #47 / cours+blog) - Better detection of when there is LaTeX in document - Don't shuffle markdown and LaTeX processing (thanks to comrak) - Macros on release - Local image support (cours+blog) - PDF support - Support of markdown files integration in other markdown files - Very basic exclusion support in toc (need a lot of improvement!!) - Update multiple dependencies (actix-web, ramhorns, comrak, reqwest, hljs) - Reformat some code - ToC in /cours support (very basic, works via building it in rust and processing it in js) - Remove very old assets (font + jspdf) - Hide navbar when printing the website - New tag in index page - Fix OCaml support for HLJS + add "pseudocode" derived from Julia Reviewed-on: #44 Co-authored-by: Mylloon <kennel.anri@tutanota.com> Co-committed-by: Mylloon <kennel.anri@tutanota.com>
53 lines
624 B
CSS
53 lines
624 B
CSS
/* Filetree */
|
|
aside {
|
|
float: left;
|
|
margin-left: 20px;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
|
|
aside ul {
|
|
list-style: none;
|
|
padding-left: 0.6em;
|
|
}
|
|
|
|
aside li {
|
|
position: relative;
|
|
}
|
|
|
|
/* Element */
|
|
aside li:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: -0.2em;
|
|
left: -1em;
|
|
height: 1em;
|
|
}
|
|
|
|
aside li.collapsed > ul {
|
|
display: none;
|
|
}
|
|
|
|
aside li.directory::before {
|
|
content: "+";
|
|
}
|
|
|
|
aside li:not(.collapsed).directory::before {
|
|
content: "-";
|
|
}
|
|
|
|
aside li.directory {
|
|
cursor: pointer;
|
|
}
|
|
|
|
@media print {
|
|
aside {
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
main img {
|
|
max-width: 100%;
|
|
display: block;
|
|
margin: auto;
|
|
}
|