Add table of contents to documentation pages
[exim-website.git] / templates / web / doc / chapter.css
1 .previous_page, .next_page {
2         font-size:                      1.2em;
3 }
4
5 .previous_page {
6         float:                          left;
7         clear:                          left;
8 }
9
10 .next_page {
11         float:                          right;
12         clear:                          right;
13 }
14
15 #chapter table {
16         margin-bottom:                  1em;
17 }
18
19 #chapter table td {
20         padding-left:                   1em;
21 }
22
23 // Side Table of Contents
24
25         #outer > #toc {
26                 position:                       fixed;
27                 top:                            35%;
28                 left:                           0;
29                 z-index:                        3000;
30         }
31
32         #outer > #toc img {
33                 position:                       fixed;
34                 top:                            35%;
35                 left:                           0;
36                 background-color:               #304b66;
37                 padding:                        0.5em;
38                 z-index:                        3000;
39                 display:                        none;
40         }
41
42         #outer > #toc img:hover {
43                 cursor:                         pointer;
44                 background-color:               #000;
45         }
46
47         #outer > #toc > ul {
48                 position:                       fixed;
49                 top:                            30%;
50                 background-color:               #fff;
51                 min-height:                     200px;
52                 max-height:                     65%;
53                 overflow-y:                     auto;
54                 padding:                        0.5em 0;
55                 border-top:                     1px solid #bbb;
56                 border-bottom:                  1px solid #bbb;
57                 z-index:                        3000;
58         }
59         #outer > #toc a {
60                 font-size:                      1.2em;
61                 color:                          #304b67;
62                 text-decoration:                none;
63                 padding:                        0 0.5em;
64         }
65         #outer > #toc a:hover {
66                 color:                          #000;
67         }
68
69         @media all and ( max-width: 640px ){
70                 #outer > #toc {
71                         display:                none;
72                 }
73         }