14 lines
451 B
CSS
14 lines
451 B
CSS
/* Hack to hide the last sub-element under "License" link in SUMMARY.md.
|
|
* Currently that's only "2023 Lead evaluation guide".
|
|
* Necessary due to lack of support for hidden chapters:
|
|
* https://github.com/rust-lang/mdBook/issues/1821
|
|
* https://github.com/rust-lang/mdBook/issues/2176 */
|
|
ol.chapter > li:not(.chapter-item):last-child {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/* Smaller size of IFT logo. */
|
|
img[src="./images/IFT_logo.png"] {
|
|
width: 15em;
|
|
}
|