diff --git a/docs/extra.js b/docs/javascript/extra.js
similarity index 100%
rename from docs/extra.js
rename to docs/javascript/extra.js
diff --git a/docs/static/extra.css b/docs/static/extra.css
new file mode 100644
index 00000000..fd0c585b
--- /dev/null
+++ b/docs/static/extra.css
@@ -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
...
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; }
\ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index c52f64e8..fe57a553 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -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
diff --git a/readthedocs.yml b/readthedocs.yml
new file mode 100644
index 00000000..c8497893
--- /dev/null
+++ b/readthedocs.yml
@@ -0,0 +1,10 @@
+
+version: 2
+
+mkdocs:
+ configuration: mkdocs.yml
+
+python:
+ version: 3.6
+ install:
+ - requirements: requirements.txt
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 00000000..baf208dd
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+mkdocs==1.0.4
\ No newline at end of file