Navigation updates and fixes
[exim-website.git] / templates / static / doc / chapter.css
1 #old_version_warning {
2   text-align:  center;
3   padding:     0.1em;
4   margin:      0;
5   font-size:   1.4em;
6 }
7
8 body.with-js #old_version_warning {
9   display:          none;
10   text-align:       left;
11   position:         fixed;
12   top:              20%;
13   left:             30%;
14   width:            40%;
15   background-color: #fff;
16   border:           1px solid #000;
17   padding:          1em;
18   z-index:          10000;
19 }
20
21 #old_version_warning span.closebar {
22   float:            right;
23   position:         relative;
24   right:            -0.5em;
25   top:              -0.5em;
26 }
27
28 #old_version_warning span.closebar a {
29   text-decoration:  none;
30 }
31
32 body.no-js #old_version_warning span.closebar {
33   display: none;
34 }
35
36 .previous_page, .next_page, .toc_page {
37   font-size:      1.2em;
38 }
39
40 .previous_page {
41   float:        left;
42   clear:        left;
43 }
44
45 .next_page {
46   float:        right;
47   clear:        right;
48 }
49
50 .toc_page {
51   position:     absolute;
52   width:        10em;
53   left:         45%;
54 }
55
56 #chapter {
57   line-height: 1.5;
58 }
59
60 #chapter table {
61   margin-top:       1em;
62   margin-bottom:    1em;
63 }
64
65 #chapter table td {
66   padding-left:     1em;
67   padding-right:    1em;
68   background-color: #eaeaea;
69   border: thin solid white;
70   font-size: 80%;
71 }
72
73 td .docbook_option, td .docbook_emphasis {
74   font-size: 125%;
75 }
76
77 /* Index section styling */
78
79 h3.index {
80   padding-top: 10px;
81   border-bottom: medium solid #000;
82   margin-bottom: 10px;
83 }
84
85 dl dt
86 {
87   clear: left;
88   float: left;
89   margin: 0;
90   font-weight: bold;
91   padding-left: 2em;
92   line-height: 1.1;
93 }
94
95 dl dd
96 {
97   margin-left: 4em;
98   padding-top: 0.2em;
99   clear: left;
100   line-height: 1.1;
101   white-space: normal;
102 }
103
104 dl dd dl
105 {
106   margin-left: -180px;
107 }
108
109
110 /* Side Table of Contents */
111
112  #outer > #toc {
113    position:     fixed;
114    top:        35%;
115    left:       0;
116    z-index:      3000;
117  }
118
119  #outer > #toc img {
120    position:     fixed;
121    top:        35%;
122    left:       0;
123    background-color:   #304b66;
124    padding:      0.5em;
125    z-index:      3000;
126    display:      none;
127  }
128
129  #outer > #toc img:hover {
130    cursor:       pointer;
131    background-color:   #000;
132  }
133
134  #outer > #toc > ul {
135    position:     fixed;
136    top:        30%;
137    background-color:   #fff;
138    min-height:     200px;
139    max-height:     65%;
140    overflow-y:     auto;
141    padding:      0.5em 0;
142    border-top:     1px solid #bbb;
143    border-bottom:      1px solid #bbb;
144    z-index:      3000;
145  }
146  #outer > #toc a {
147    font-size:      1.2em;
148    color:        #304b67;
149    text-decoration:    none;
150    padding:      0 0.5em;
151  }
152  #outer > #toc a:hover {
153    color:        #000;
154  }
155
156  @media all and ( max-width: 640px ){
157    #outer > #toc {
158      display:    none;
159    }
160  }
161
162 /* Changebars  -- experimental */
163 .changed {
164   border-right: 5px solid #000;
165 }