-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for mermaid and plantuml
- Loading branch information
Showing
6 changed files
with
152 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,11 @@ | ||
# MkDocs | ||
site/ | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
/* | ||
* https://www.hogent.be/dit-is-hogent/huisstijl/huisstijl-kleuren/ | ||
* https://fonts.google.com/specimen/Montserrat | ||
* https://fonts.google.com/specimen/Inconsolata | ||
*/ | ||
|
||
@import url("https://fonts.googleapis.com/css2?family=Inconsolata&family=Montserrat:ital,wght@0,400;0,600;0,800;1,400;1,600;1,800&display=swap"); | ||
@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap"); | ||
|
||
:root { | ||
--hogent-blue: #4ca2d5; | ||
--hogent-gray: #c3bbaf; | ||
--hogent-red: #ef8767; | ||
--hogent-white: #ffffff; | ||
--hogent-black: #000000; | ||
|
||
/* HOGENT blue is good for slides and accents with bold text, but is too bright for regular text. Therefore, we use | ||
* a darker blue for text, like the blue Wikipedia uses for links. | ||
* https://en.wikipedia.org/wiki/Help:Link_color#Standard_colors | ||
*/ | ||
--wikipedia-blue: #3366cc; | ||
--blue: var(--wikipedia-blue); | ||
} | ||
|
||
body { | ||
font-family: "Montserrat", "Arial", sans-serif; | ||
font-weight: 400; | ||
font-size: 1rem; | ||
line-height: 1.5em; | ||
color: var(--hogent-black); | ||
} | ||
|
||
.rst-content h1, | ||
.rst-content h2, | ||
.rst-content h3, | ||
.rst-content h4, | ||
.rst-content h5, | ||
.rst-content h6 { | ||
font-family: "Montserrat", "Arial", sans-serif; | ||
font-weight: 800; | ||
} | ||
|
||
.rst-content h1 { | ||
font-size: 2.5em; | ||
} | ||
|
||
.rst-content h2 { | ||
font-size: 1.5em; | ||
} | ||
|
||
.rst-content h3 { | ||
font-size: 1.25em; | ||
} | ||
|
||
.rst-content h4 { | ||
font-size: 1em; | ||
} | ||
|
||
b, | ||
strong { | ||
color: var(--hogent-red); | ||
font-weight: bold; | ||
} | ||
|
||
i, | ||
em { | ||
font-style: italic; | ||
} | ||
|
||
a { | ||
color: var(--blue); | ||
} | ||
|
||
a:hover { | ||
color: var(--hogent-gray); | ||
text-decoration: none; | ||
} | ||
|
||
.rst-content code, | ||
.rst-content pre code.hljs { | ||
font-family: "Inconsolata", monospace; | ||
font-size: 1rem; | ||
} | ||
|
||
.rst-content code { | ||
color: var(--blue); | ||
} | ||
|
||
blockquote p { | ||
font-style: italic; | ||
padding: 1em; | ||
border-style: solid; | ||
border-width: 1px; | ||
border-color: var(--hogent-gray); | ||
border-radius: 5px; | ||
} | ||
|
||
ol { | ||
list-style-type: decimal; | ||
} | ||
|
||
ul { | ||
list-style-type: disc; | ||
} | ||
|
||
ul ul { | ||
list-style-type: square; | ||
} | ||
|
||
ul ul ul { | ||
list-style-type: circle; | ||
} | ||
|
||
/* Uncomment if you want the theme to fill the entire width of the screen | ||
*/ | ||
/* .wy-nav-content { | ||
max-width: 100%; | ||
} */ | ||
|
||
/* tr, | ||
th { | ||
border-style: none; | ||
} | ||
td { | ||
border-style: solid none none none; | ||
border-color: var(--hogent-black); | ||
} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
mkdocs | ||
pymdown-extensions | ||
mkdocs-mermaid2-plugin | ||
mkdocs_puml |