Improves the maintainability and clarity of the documentation assets by restructuring directories and refining CSS rules. - Rename CSS and JavaScript directories for better asset organization. - Add CSS rules to hide elements with 'bc-docs-hidden' attribute, enhancing document customization. - Comment out specific content in CSS header to simplify text display. - Remove outdated UML mindmap file to clean up unused resources. - Comment out 'md_in_html' extension in mkdocs configuration to streamline markdown processing. Signed-off-by: Glenn Y. Rolland <glenux@glenux.net>
59 lines
1 KiB
CSS
59 lines
1 KiB
CSS
p > img[alt*="center"] {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
hr {
|
|
display: none;
|
|
}
|
|
|
|
h1[bc-docs-hidden]
|
|
h2[bc-docs-hidden]
|
|
h3[bc-docs-hidden]
|
|
h4[bc-docs-hidden]
|
|
h5[bc-docs-hidden]
|
|
h6[bc-docs-hidden] {
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
@page {
|
|
size: a4 portrait;
|
|
margin: 25mm 10mm 25mm 10mm;
|
|
counter-increment: page;
|
|
font-family: "Noto", sans-serif;
|
|
white-space: pre;
|
|
color: grey;
|
|
|
|
@top-left {
|
|
font-size: 70%;
|
|
content: 'Formation'; /* « Cloud & Enjeux »'; */
|
|
}
|
|
/*
|
|
@top-center {
|
|
content: string(chapter);
|
|
}*/
|
|
@top-right {
|
|
font-size: 70%;
|
|
/* content: 'SQLI INSTITUT (ASTON)'; */
|
|
/* content: 'AELION'; */
|
|
content: '';
|
|
}
|
|
|
|
@bottom-left {
|
|
font-size: 70%;
|
|
content: '2017-2022 © Glenn ROLLAND - Ne pas diffuser';
|
|
}
|
|
/*
|
|
@bottom-center {
|
|
content: string(chapter);
|
|
}*/
|
|
|
|
/*
|
|
@bottom-right {
|
|
font-size: 70%;
|
|
content: 'Page ' counter(page);
|
|
}*/
|
|
}
|
|
|