new mkdocs files

This commit is contained in:
Inaki Fernandez
2020-05-29 00:56:38 +02:00
parent b52b4bb4f6
commit 42abca5138
5 changed files with 41 additions and 8 deletions
+21
View File
@@ -0,0 +1,21 @@
/* Applies to the entire body of the HTML document (except where overridden by more specific
selectors). */
body {
margin: 25px;
background-color: rgb(240,240,240);
font-family: arial, sans-serif;
font-size: 14px;
}
/* Applies to all <h1>...</h1> elements. */
h1 {
font-size: 35px;
font-weight: normal;
margin-top: 5px;
}
/* Applies to all elements with <... class="someclass"> specified. */
.someclass { color: red; }
/* Applies to the element with <... id="someid"> specified. */
#someid { color: green; }
+9 -8
View File
@@ -12,20 +12,21 @@ theme:
titles_only: True
sticky_navigation: True
extra_css:
- extra.css
- static/extra.css
extra_javascript:
- extra.js
- javascript/extra.js
site_favicon: images/favicon.ico
markdown_extensions:
- smarty
- sane_lists
- fenced_code
- meta
- admonition
- smarty
- sane_lists
- fenced_code
- meta
- admonition
- toc:
permalink: True
separator: "-"
pages:
#pages:
nav:
- Home: index.md
- Introduction:
- Openshift VS Kubernetes: introduction.md
+10
View File
@@ -0,0 +1,10 @@
version: 2
mkdocs:
configuration: mkdocs.yml
python:
version: 3.6
install:
- requirements: requirements.txt
+1
View File
@@ -0,0 +1 @@
mkdocs==1.0.4