Material Theme + styles custom
BIN
docs/assets/grenouille_bleue.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
docs/assets/images/android-chrome-192x192.png
Executable file
After Width: | Height: | Size: 9.5 KiB |
BIN
docs/assets/images/android-chrome-512x512.png
Executable file
After Width: | Height: | Size: 27 KiB |
BIN
docs/assets/images/apple-touch-icon.png
Executable file
After Width: | Height: | Size: 8.7 KiB |
BIN
docs/assets/images/favicon-16x16.png
Executable file
After Width: | Height: | Size: 502 B |
BIN
docs/assets/images/favicon-32x32.png
Executable file
After Width: | Height: | Size: 1.1 KiB |
BIN
docs/assets/images/favicon.png
Executable file
After Width: | Height: | Size: 1.1 KiB |
28
docs/stylesheets/extra.css
Normal file
@ -0,0 +1,28 @@
|
||||
div.md-sidebar--secondary,
|
||||
div.md-sidebar--secondary div {
|
||||
background-color: rgb(217, 217, 217);
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
div.md-sidebar--secondary div.md-sidebar__scrollwrap {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.md-content h1,
|
||||
.md-content h2,
|
||||
.md-content h3 {
|
||||
margin-block-start: 0px;
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.md-content ul {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
.md-content h3+p {
|
||||
margin-block-start: 0px;
|
||||
margin-top: 0px;
|
||||
}
|
53
mkdocs.yml
@ -1,33 +1,45 @@
|
||||
site_name: ScoDoc
|
||||
|
||||
theme:
|
||||
name: mkdocs
|
||||
# name: mkdocs
|
||||
name: material
|
||||
navigation_depth: 3
|
||||
features:
|
||||
- navigation.tabs
|
||||
- toc.follow
|
||||
- navigation.top
|
||||
palette:
|
||||
primary: light blue
|
||||
language: fr
|
||||
logo: assets/images/android-chrome-192x192.png
|
||||
|
||||
extra_css:
|
||||
- stylesheets/extra.css
|
||||
|
||||
nav:
|
||||
- Accueil: index.md
|
||||
- Documentation:
|
||||
- 'Guide utilisateur': GuideUtilisateur.md
|
||||
- 'Tutos vidéos': https://www.youtube.com/playlist?list=PLw49h6RbvswhasBk9bXj7PzOD8GDW3kG1
|
||||
- 'Responsables de formations': GuideAdminFormation.md
|
||||
- 'FAQ': FAQ.md
|
||||
- "Guide utilisateur": GuideUtilisateur.md
|
||||
- "Tutos vidéos": https://www.youtube.com/playlist?list=PLw49h6RbvswhasBk9bXj7PzOD8GDW3kG1
|
||||
- "Responsables de formations": GuideAdminFormation.md
|
||||
- "FAQ": FAQ.md
|
||||
|
||||
- Installation:
|
||||
- 'Guide administration': GuideAdminSys.md
|
||||
- 'Installation': GuideInstallDebian11.md
|
||||
- 'Mises à jour': MisesAJour.md
|
||||
- 'Interfaces SI': InterrogationPortail.md
|
||||
- 'Publication des notes': PublicationEtudiants.md
|
||||
- 'Export Apogée': ScoDocApogee.md
|
||||
- "Guide administration": GuideAdminSys.md
|
||||
- "Installation": GuideInstallDebian11.md
|
||||
- "Mises à jour": MisesAJour.md
|
||||
- "Interfaces SI": InterrogationPortail.md
|
||||
- "Publication des notes": PublicationEtudiants.md
|
||||
- "Export Apogée": ScoDocApogee.md
|
||||
|
||||
- Association:
|
||||
- 'Association 1901': AssociationScoDoc.md
|
||||
- 'Utilisateurs': UtilisateursScoDoc.md
|
||||
- "Association 1901": AssociationScoDoc.md
|
||||
- "Utilisateurs": UtilisateursScoDoc.md
|
||||
|
||||
- Développement:
|
||||
- 'Git': https://scodoc.org/git
|
||||
- 'Guide Développeurs': GuideDeveloppeurs.md
|
||||
- 'API (interfaçages autres logiciels)': ScoDoc9API.md
|
||||
|
||||
- "Git": https://scodoc.org/git
|
||||
- "Guide Développeurs": GuideDeveloppeurs.md
|
||||
- "API (interfaçages autres logiciels)": ScoDoc9API.md
|
||||
|
||||
- FAQ: FAQ.md
|
||||
|
||||
@ -47,3 +59,10 @@ markdown_extensions:
|
||||
- pymdownx.arithmatex:
|
||||
generic: true
|
||||
- footnotes
|
||||
- pymdownx.tasklist:
|
||||
custom_checkbox: true
|
||||
- pymdownx.superfences:
|
||||
custom_fences:
|
||||
- name: mermaid
|
||||
class: mermaid
|
||||
format: !!python/name:pymdownx.superfences.fence_code_format
|
||||
|