docs - Initial theme layout
silversword411 committed
Jan 27, 2022 at 10:23 UTC
d95330dd1966309f239a62688efb789686aca0d6
6 files changed
+117
-10
docs/docs/images/back.png
Binary files /dev/null and b/docs/docs/images/back.png differ
docs/docs/images/favicon-303x303.png
Binary files /dev/null and b/docs/docs/images/favicon-303x303.png differ
docs/docs/images/favicon.ico
Binary files /dev/null and b/docs/docs/images/favicon.ico differ
docs/docs/mkdocs.yml
deleted
-10
@@ -1,10 +0,0 @@
1
-site_name: "MeshCentral2 Documentation"
2
-nav:
3
- - Home: index.md
4
-site_description: "A remote monitoring and management tool"
5
-site_author: " Ylianst"
6
-site_url: "https://git.meshcentral.com/"
7
-
8
-# Repository
9
-repo_name: "Ylianst/MeshCentral"
10
-repo_url: "https://github.com/Ylianst/MeshCentral"
\ No newline at end of file
docs/docs/stylesheets/extra.css
new
+63
@@ -0,0 +1,63 @@
1
+.md-header {
2
+ background-color: #0b3e81 !important;
3
+ color: white !important;
4
+}
5
+.md-search__input {
6
+ background-color: white !important;
7
+}
8
+.md-search__icon[for=__search]{
9
+ color: initial;
10
+}
11
+.md-container {
12
+ background-color: #0b3e81;
13
+}
14
+.md-footer-meta__inner {
15
+ background-color: #0b3e81;
16
+}
17
+.md-grid {
18
+}
19
+.md-nav__item .md-nav__link--active {
20
+ color: white;
21
+}
22
+.md-nav__link {
23
+ color: white;
24
+}
25
+.md-nav__link[data-md-state=blur] {
26
+ color: white;
27
+}
28
+.md-typeset a {
29
+ color: whitesmoke;
30
+ text-decoration: underline;
31
+ text-shadow: 4px 4px 8px black;
32
+}
33
+.md-typeset h1 {
34
+ color: white;
35
+ text-shadow: 4px 4px 8px black;
36
+}
37
+.md-typeset h2 {
38
+ color: white;
39
+ text-shadow: 4px 4px 8px black;
40
+}
41
+.md-typeset h3 {
42
+ color: white;
43
+ text-shadow: 4px 4px 8px black;
44
+}
45
+.md-typeset h4 {
46
+ color: white;
47
+ text-shadow: 4px 4px 8px black;
48
+}
49
+.md-typeset h5 {
50
+ color: white;
51
+ text-shadow: 4px 4px 8px black;
52
+}
53
+.md-main {
54
+ color: white !important;
55
+ background-color: #113962;
56
+ background: linear-gradient(to bottom, #104893 0%,#113962 100%);
57
+}
58
+a:link {
59
+ color: #c8c8c8;
60
+}
61
+.html {
62
+ background-color: #0b3e81;
63
+}
docs/mkdocs.yml
new
+54
@@ -0,0 +1,54 @@
1
+site_name: "MeshCentral2 Documentation"
2
+nav:
3
+ - Home: index.md
4
+site_description: "A remote monitoring and management tool"
5
+site_author: " Ylianst"
6
+site_url: "https://git.meshcentral.com/"
7
+
8
+# Repository
9
+repo_name: "Ylianst/MeshCentral"
10
+repo_url: "https://github.com/Ylianst/MeshCentral"
11
+edit_uri: ""
12
+
13
+theme:
14
+ name: "material"
15
+ logo: "images/favicon.ico"
16
+ favicon: "images/favicon.ico"
17
+ language: "en"
18
+ palette:
19
+ primary: "white"
20
+ accent: "indigo"
21
+ features:
22
+extra_css:
23
+ - stylesheets/extra.css
24
+
25
+markdown_extensions:
26
+ - pymdownx.keys
27
+ - pymdownx.inlinehilite
28
+ - pymdownx.arithmatex:
29
+ generic: true
30
+ - pymdownx.betterem:
31
+ smart_enable: all
32
+ - pymdownx.caret
33
+ - admonition
34
+ - pymdownx.details
35
+ - pymdownx.highlight
36
+ - pymdownx.inlinehilite
37
+ - pymdownx.keys
38
+ - pymdownx.mark
39
+ - pymdownx.smartsymbols
40
+ - pymdownx.highlight
41
+ - pymdownx.inlinehilite
42
+ - pymdownx.keys
43
+ - pymdownx.mark
44
+ - pymdownx.smartsymbols
45
+ - codehilite:
46
+ guess_lang: false
47
+ - toc:
48
+ permalink: true
49
+ - pymdownx.emoji:
50
+ emoji_index: !!python/name:materialx.emoji.twemoji
51
+ emoji_generator: !!python/name:materialx.emoji.to_svg
52
+ - pymdownx.superfences
53
+ - pymdownx.tabbed:
54
+ alternate_style: true