From a8a18c8b99a321d8df5cc48d24006ff33fcec520 Mon Sep 17 00:00:00 2001 From: schroeder5 <s.schroeder@fz-juelich.de> Date: Tue, 26 May 2020 11:42:19 +0200 Subject: [PATCH] pages did not run correctly: add directory '_static_ --- docs/_static/css/hacks.css | 93 ++++++++++++++++++++++++++++++++++++++ docs/_static/custom.css | 1 + 2 files changed, 94 insertions(+) create mode 100644 docs/_static/css/hacks.css create mode 120000 docs/_static/custom.css diff --git a/docs/_static/css/hacks.css b/docs/_static/css/hacks.css new file mode 100644 index 0000000..a5ea8e8 --- /dev/null +++ b/docs/_static/css/hacks.css @@ -0,0 +1,93 @@ +/* + * CSS hacks and small modification for my Sphinx website + * :copyright: Copyright 2013-2016 Lilian Besson + * :license: GPLv3, see LICENSE for details. + */ + + +/* Colors and text decoration. + For example, :black:`text in black` or :blink:`text blinking` in rST. */ + +.black { + color: black; +} + +.gray { + color: gray; +} + +.grey { + color: gray; +} + +.silver { + color: silver; +} + +.white { + color: white; +} + +.maroon { + color: maroon; +} + +.red { + color: red; +} + +.magenta { + color: magenta; +} + +.fuchsia { + color: fuchsia; +} + +.pink { + color: pink; +} + +.orange { + color: orange; +} + +.yellow { + color: yellow; +} + +.lime { + color: lime; +} + +.green { + color: green; +} + +.olive { + color: olive; +} + +.teal { + color: teal; +} + +.cyan { + color: cyan; +} + +.aqua { + color: aqua; +} + +.blue { + color: blue; +} + +.navy { + color: navy; +} + +.purple { + color: purple; +} diff --git a/docs/_static/custom.css b/docs/_static/custom.css new file mode 120000 index 0000000..96b0eb8 --- /dev/null +++ b/docs/_static/custom.css @@ -0,0 +1 @@ +css/hacks.css \ No newline at end of file -- GitLab