summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Maupetit <julien@tailordev.fr>2016-01-29 11:05:28 +0100
committerJulien Maupetit <julien@tailordev.fr>2016-01-29 11:05:28 +0100
commit4e75ca6d416ba8dd1a2e9fb226f05a76acdffa22 (patch)
tree0e1b1f015c98aa10e7dfa20078649c4b86617d44
parent36ca2054ae701d08e72c85e4c9d9297b9c70cfb3 (diff)
Add extra css to docs
-rw-r--r--docs/css/watson.css29
-rw-r--r--mkdocs.yml2
2 files changed, 31 insertions, 0 deletions
diff --git a/docs/css/watson.css b/docs/css/watson.css
new file mode 100644
index 0000000..7c29e51
--- /dev/null
+++ b/docs/css/watson.css
@@ -0,0 +1,29 @@
+/*
+ Watson styles.
+ */
+
+a {
+ color:#1abc9c;
+}
+
+h2 {
+ margin-top: 2em;
+}
+
+p {
+ margin: 0 0 1.2em;
+ font-size: 1.1em;
+ line-height: 1.4em;
+ text-align: justify;
+}
+
+p > img {
+ display: block;
+ max-width: 100%;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+p a {
+ text-decoration: underline;
+}
diff --git a/mkdocs.yml b/mkdocs.yml
index 3c349bf..a174c45 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -19,3 +19,5 @@ pages:
- About:
- License: 'about/license.md'
- Release notes: 'about/release-notes.md'
+extra_css:
+ - css/watson.css