1div.dokuwiki h1, div.dokuwiki h2, div.dokuwiki h3, div.dokuwiki h4, div.dokuwiki h5 {
2    background-color: inherit;
3    /*text-decoration: underline; underline property cross hackes whereas border does not*/
4    width: -moz-max-content;
5    /* The content will go outside of the parent
6     The border will stop to the end of the content */
7    /*noinspection CssInvalidPropertyValue*/
8    width: -webkit-max-content;
9    /* The content may become so long that it goes outside the parent
10    max width prevent it */
11    max-width: 100%;
12    /* The border will stop to the end of the content
13    - Pb: The content will go outside of the parent*/
14    border-bottom-color: #8cacbb;
15    border-bottom-style: solid;
16    border-bottom-width: 1px;
17    clear: left;
18    color: #000;
19    font-size: 100%;
20    font-weight: normal;
21    margin-bottom: 10px;
22    margin-left: 0;
23    margin-right: 0;
24    padding-bottom: 0;
25    padding-left: 0;
26    padding-right: 0;
27    /*
28    As the top-nav-bar is fix, the two below values must be equal to the navbar offset
29    in order to get a correct navigation to the anchor
30    See http://stackoverflow.com/questions/17181355/boostrap-using-fixed-navbar-and-anchor-tags-to-jump-to-sections
31    */
32    padding-top: 95px;
33    margin-top: -80px;
34}
35
36/* The h2 in the extension manager is impacted by the  top-nav-bar fix for the content */
37div.dokuwiki div#extension__manager h2 {
38    padding-top: 0px;
39    margin-top: 0px;
40}
41
42div.dokuwiki h1 {
43    font-size: 160%;
44    font-weight: bold;
45    margin-left: 0;
46}
47div.dokuwiki h2 {
48    font-size: 150%;
49    margin-left: 20px;
50}
51div.dokuwiki h3 {
52    border-bottom-color: -moz-use-text-color;
53    border-bottom-style: none;
54    border-bottom-width: medium;
55    font-size: 140%;
56    font-weight: bold;
57    margin-left: 40px;
58}
59div.dokuwiki h4 {
60    border-bottom-color: -moz-use-text-color;
61    border-bottom-style: none;
62    border-bottom-width: medium;
63    font-size: 120%;
64    font-weight: bold;
65    margin-left: 60px;
66}
67div.dokuwiki h5 {
68    border-bottom-color: -moz-use-text-color;
69    border-bottom-style: none;
70    border-bottom-width: medium;
71    font-size: 100%;
72    font-weight: bold;
73    margin-left: 80px;
74}
75div.dokuwiki div.level1 {
76    margin-left: 3px;
77}
78div.dokuwiki div.level2 {
79    margin-left: 23px;
80}
81div.dokuwiki div.level3 {
82    margin-left: 43px;
83}
84div.dokuwiki div.level4 {
85    margin-left: 63px;
86}
87div.dokuwiki div.level5 {
88    margin-left: 83px;
89}
90
91/*Toc*/
92#dw__toc h3 {
93    margin-left: 20px; /* as h2 */
94    margin-bottom: 3px;
95}
96