source: branches/2.2/filemanager/tp/dompdf/www/style.css @ 3019

Revision 3019, 4.1 KB checked in by amuller, 14 years ago (diff)

Ticket #1135 - Corrigindo CSS e adicionando filemanager

Line 
1body, select {
2  color: #7d7a7a;
3  font-family: 'trebuchet ms', verdana, sans-serif;
4}
5
6a:link, a:visited, a:active {
7  color: #5F83BA;
8  text-decoration: none;
9}
10
11a:hover {
12  color: #5f83ba;
13  text-decoration: underline;
14}
15
16img { border: none; }
17
18pre,
19code {
20  font-size: 0.8em;
21  font-family: "lucida console", monospace;
22}
23
24pre {
25  background-color: #f8f8f8;
26  padding: 10px;
27}
28
29select { font-size: 0.8em; font-weight: bold; }
30
31#header {
32  background-image: url('images/h_bar.gif');
33  background-repeat: repeat-x;
34  background-position: bottom right;
35  height: 50px;
36}
37
38#footer {
39  font-size: 0.75em;
40  padding-top: 12px;
41  background-image: url('images/h_bar.gif');
42  background-repeat: repeat-x;
43  background-position: top left;
44  height: 35px;
45  vertical-align: middle;
46  clear: both;
47}
48
49#logo {
50  position: absolute;
51  top: 0px;
52  right: 0px;
53  border: none;
54}
55
56.badges { float: right; }
57
58#left_col, #content {
59  vertical-align: top; 
60}
61/*
62#left_col {
63  padding: 3px 3px 2em 3px;
64  margin-top: 2px;
65  width: 210px;
66  padding-right: 10px;
67  background-image: url('images/v_bar.gif');
68  background-repeat: repeat-y;
69  background-position: top right;
70}
71*/
72
73#left_col {
74  padding: 3px 3px 2em 3px;
75  margin-top: 2px;
76  width: 210px;
77  padding-right: 10px;
78  float: left;
79}
80
81#left_col h2 {
82  font-size: 1.0em;
83  margin-top: 0.5em;
84  margin-bottom: 0.25em;
85}
86
87#left_col ul {
88  margin-top: 0.25em;
89  padding-left: 0px;
90}
91
92#left_col ul { margin-left: 0px; }
93
94#left_col ul li { list-style-position: inside; }
95
96#left_col p { font-size: 0.8em; }
97
98#left_col iframe { margin-left: 40px; margin-top: 10px; }
99
100#content {
101  margin: 0em 0px 0px 210px;
102  padding: 1em 1em 1em 4em;
103  min-width: 400px;
104  width: 60%;
105  background-image: url('images/v_bar.gif');
106  background-repeat: repeat-y;
107  background-position: top left;
108}
109
110#content #toc+a+h2,
111#content #toc+h2 { margin-top: -1.5em; }
112
113.message {
114  margin-top: 1em;
115  border: 1px dashed #5E83BA;
116}
117
118#content li {
119  margin-top: 0.5em;
120  vertical-align: top;
121}
122
123#content>*>li {
124  margin-right: 40px;  /* keep things in line */
125}
126
127#content h2 {
128  text-align: right;
129  color: #4A9166;
130}
131
132#content h3 {
133  margin-top: 2em;
134}
135
136#content p {
137  text-align: justify;
138}
139
140#content div.divider1, 
141#content div.divider2 {
142  margin-top: 1.5em;
143  margin-bottom: 1em;
144  margin-left: 15%;
145  height: 25px;
146  width: 60%;
147}
148
149#content table td { padding: 0.5em; }
150
151
152#content div.divider1, 
153#content div.divider2,
154#content table td.bar1,
155#content table td.bar2 {
156  background-image: url('images/h_bar.gif');
157  background-repeat: repeat-x;
158}
159
160#content div.divider1,
161#content table td.bar1 {
162  background-position: bottom right;
163}
164
165#content div.divider2,
166#content table td.bar2 {
167  background-position: top left;
168}
169
170#content table td.input {
171  white-space: nowrap;
172  font-family: "lucida console", monospace;
173  font-size: 0.8em;
174}
175
176#content table td.description {
177  padding-left: 2em;
178}
179
180#content textarea {
181  padding: 4px;
182  width: 100%;
183  border: 1px dashed #5F83BA;
184}
185
186#content input {
187  border: 1px dashed #5F83BA;
188  background-color: #fff;
189  color: #7d7a7a;
190  font-family: 'trebuchet ms', verdana, sans-serif;
191}
192
193#toc {
194  margin-top: -1em;
195  margin-left: -3em;
196  font-size: 0.8em;
197}
198
199/*
200#toc>h2:first-child {
201  background-image: url('images/h_bar.gif');
202  background-repeat: repeat-x;
203  background-position: top left;
204  padding-top: 0.5em;
205}
206*/
207
208#toc h2 {
209  font-size: 1em;
210  text-align: left;
211  padding-left: 1em;
212}
213
214#toc ul ul {
215  padding-left: 20px;
216}
217
218.news_headline {
219  margin-top: 0.75em;
220  color: #5F83BA;
221}
222
223p.news_body {
224}
225
226.posted_date {
227  font-size: 0.8em;
228  color: #4A9166;
229}
230
231.answers>h3:before {
232  content: "Q: ";
233  color:  #4A9166;
234  font-size: 30px;
235  font-weight: bold;
236}
237
238.answers>h3+p:before {
239  content: "A: ";
240  color: #5F83BA;
241  font-size: 30px;
242  font-weight: bold;
243}
244
245/* Method definitions from phpdoc */
246.method-definition {
247  background-image: url('images/h_bar.gif');
248  background-position: bottom center;
249  background-repeat: repeat-x;
250  padding: 10px 10px 20px 10px; 
251  margin-bottom: 1em;
252}
253
254.method-title {
255  color: #5F83BA;
256}
257
258.var-name,
259.method-name,
260.method-title {
261  font-weight: bold;
262}
263
264.var-type,
265.method-result {
266  color: #4A9166;
267  font-style: italic; 
268}
269
Note: See TracBrowser for help on using the repository browser.