c206e88061fdebe06a158f15265711250c08a8c2
[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-top:       1em;
17   margin-bottom:    1em;
18 }
19
20 #chapter table td {
21   padding-left:     1em;
22   padding-right:    1em;
23   background-color: #eaeaea;
24   border: thin solid white;
25   font-size: 80%;
26 }
27
28 td .docbook_option, td .docbook_emphasis {
29   font-size: 125%;
30 }
31
32 /* Index section styling */
33
34 h3.index {
35   padding-top: 10px;
36   border-bottom: medium solid #000;
37   margin-bottom: 10px;
38 }
39
40 dl dt
41 {
42   clear: left;
43   float: left;
44   margin: 0;
45   font-weight: bold;
46   padding-left: 2em;
47   line-height: 1.1;
48 }
49
50 dl dd
51 {
52   margin-left: 4em;
53   padding-top: 0.2em;
54   clear: left;
55   line-height: 1.1;
56   white-space: normal;
57 }
58
59 dl dd dl
60 {
61   margin-left: -180px;
62 }
63
64
65 /* Side Table of Contents */
66
67  #outer > #toc {
68    position:     fixed;
69    top:        35%;
70    left:       0;
71    z-index:      3000;
72  }
73
74  #outer > #toc img {
75    position:     fixed;
76    top:        35%;
77    left:       0;
78    background-color:   #304b66;
79    padding:      0.5em;
80    z-index:      3000;
81    display:      none;
82  }
83
84  #outer > #toc img:hover {
85    cursor:       pointer;
86    background-color:   #000;
87  }
88
89  #outer > #toc > ul {
90    position:     fixed;
91    top:        30%;
92    background-color:   #fff;
93    min-height:     200px;
94    max-height:     65%;
95    overflow-y:     auto;
96    padding:      0.5em 0;
97    border-top:     1px solid #bbb;
98    border-bottom:      1px solid #bbb;
99    z-index:      3000;
100  }
101  #outer > #toc a {
102    font-size:      1.2em;
103    color:        #304b67;
104    text-decoration:    none;
105    padding:      0 0.5em;
106  }
107  #outer > #toc a:hover {
108    color:        #000;
109  }
110
111  @media all and ( max-width: 640px ){
112    #outer > #toc {
113      display:    none;
114    }
115  }