New upstream version 1.2.3
[quagga-debian.git] / doc / texinfo.css
1 /*
2    CSS style for Texinfo documents
3    
4    Public domain 2016 sirgazil. All rights waived.
5    
6    Obtained from: 
7    
8     https://sirgazil.bitbucket.io/en/artifact
9     https://sirgazil.bitbucket.io/en/doc/texinfo-css/tip/manual/static/css/document.css
10 */
11
12
13
14 /* NATIVE ELEMENTS */
15 a:link {color: #000099; text-decoration: none;}
16 a:visited {
17     color: #6666cc;
18     text-decoration: none;
19 }
20
21 a:active,
22 a:focus,
23 a:hover {
24     color: #cc0000;
25     text-decoration: underline;
26 }
27
28 abbr,
29 acronym {
30     cursor: help;
31 }
32
33 blockquote {
34     color: #555753;
35     font-style: oblique;
36     margin: 30px 0px;
37     padding-left: 3em;
38 }
39
40 body {
41     background-color: white;
42     box-shadow: 0 0 2px gray;
43     box-sizing: border-box;
44     color: #333;
45     font-family: sans-serif;
46     font-size: 16px;
47     margin: 50px auto;
48     max-width: 960px;
49     padding: 50px;
50 }
51
52 code,
53 samp,
54 tt,
55 var {
56     color: purple;
57     font-size: 0.8em;
58 }
59
60 div.example,
61 div.lisp {
62     margin: 0px;
63 }
64
65 dl {
66     margin: 3em 0em;
67 }
68
69 dl dl {
70     margin: 0em;
71 }
72
73 dt {
74     background-color: #F5F5F5;
75     padding: 0.5em;
76 }
77
78 h1,
79 h2,
80 h2.contents-heading,
81 h3,
82 h4 {
83     padding: 20px 0px 0px 0px;
84     font-weight: normal;
85 }
86
87 h1 {
88     font-size: 2.4em;
89 }
90
91 h2 {
92     font-size: 2.2em;
93     font-weight: bold;
94 }
95
96 h3 {
97     font-size: 1.8em;
98 }
99
100 h4 {
101     font-size: 1.4em;
102 }
103
104 hr {
105     background-color: silver;
106     border-style: none;
107     height: 1px;
108     margin: 0px;
109 }
110
111 html {
112     background-color: #F5F5F5;
113 }
114
115 img {
116     max-width: 100%;
117 }
118
119 li {
120     padding: 5px;
121 }
122
123 pre.display,
124 pre.example,
125 pre.format,
126 pre.lisp,
127 pre.verbatim{
128     overflow: auto;
129 }
130
131 pre.example,
132 pre.lisp,
133 pre.verbatim {
134     background-color: #2D3743;
135     border-color: #000;
136     border-style: solid;
137     border-width: thin;
138     color: #E1E1E1;
139     font-size: smaller;
140     padding: 1em;
141 }
142
143 table {
144     border-collapse: collapse;
145     margin: 40px 0px;
146 }
147
148 table.index-cp *,
149 table.index-fn *,
150 table.index-ky *,
151 table.index-pg *,
152 table.index-tp *,
153 table.index-vr * {
154     background-color: inherit;
155     border-style: none;
156 }
157
158 td,
159 th {
160     border-color: silver;
161     border-style: solid;
162     border-width: thin;
163     padding: 10px;
164 }
165
166 th {
167     background-color: #F5F5F5;
168 }
169 /* END NATIVE ELEMENTS */
170
171
172
173 /* CLASSES */
174 .contents {
175     margin-bottom: 4em;
176 }
177
178 .float {
179     margin: 3em 0em;
180 }
181
182 .float-caption {
183     font-size: smaller;
184     text-align: center;
185 }
186
187 .float > img {
188     display: block;
189     margin: auto;
190 }
191
192 .footnote {
193     font-size: smaller;
194     margin: 5em 0em;
195 }
196
197 .footnote h3 {
198     display: inline;
199     font-size: small;
200 }
201
202 .header {
203     background-color: #F2F2F2;
204     font-size: small;
205     padding: 0.2em 1em;
206 }
207
208 .key {
209     color: purple;
210     font-size: 0.8em;
211 }
212
213 .menu * {
214     border-style: none;
215 }
216
217 .menu td {
218     padding: 0.5em 0em;
219 }
220
221 .menu td:last-child {
222     width: 60%;
223 }
224
225 .menu th {
226     background-color: inherit;
227 }
228 /* END CLASSES */