diff --git a/modules/doc/application/views/scripts/icingaweb/chapter.phtml b/modules/doc/application/views/scripts/icingaweb/chapter.phtml
index 328d0bebe..2ab744ebd 100644
--- a/modules/doc/application/views/scripts/icingaweb/chapter.phtml
+++ b/modules/doc/application/views/scripts/icingaweb/chapter.phtml
@@ -2,6 +2,7 @@
$urlHelper = $this->getHelper('Url');
$view = $this;
?>
+
diff --git a/modules/doc/application/views/scripts/module/chapter.phtml b/modules/doc/application/views/scripts/module/chapter.phtml
index 59a6ecb33..3a809209f 100644
--- a/modules/doc/application/views/scripts/module/chapter.phtml
+++ b/modules/doc/application/views/scripts/module/chapter.phtml
@@ -2,6 +2,7 @@
$urlHelper = $this->getHelper('Url');
$view = $this;
?>
+
diff --git a/modules/doc/public/css/module.less b/modules/doc/public/css/module.less
index 45d97e5c6..52fff5c32 100644
--- a/modules/doc/public/css/module.less
+++ b/modules/doc/public/css/module.less
@@ -1,9 +1,33 @@
-.toc {
- float: left;
- width: 33.333%
+// W3C Recommendation (except h4)
+h1 { font-size: 2em !important; }
+h2 { font-size: 1.5em !important; }
+h3 { font-size: 1.17em !important; }
+h4 { font-size: 1em !important; }
+h5 { font-size: .83em !important; }
+h6 { font-size: .75em !important; }
+
+div.chapter {
+ padding-left: 5px;
}
-.doc {
- float: left;
- width: 66.667%
+table th {
+ text-align: left;
+}
+
+table th,
+table td {
+ border: solid 1px lightgray;
+ padding-left: 5px;
+ padding-right: 5px;
+}
+
+code {
+ width: 100%;
+ overflow-x: auto;
+ padding: 0.2em;
+ display: inline;
+}
+
+pre > code {
+ display: inline-block;
}