]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/default/phpwiki-topbottombars.css
moved default css files from phpwiki root into themes/default/
[SourceForge/phpwiki.git] / themes / default / phpwiki-topbottombars.css
1 /**
2  * $Id: phpwiki-topbottombars.css,v 1.1 2002-03-06 02:21:16 carstenklapp Exp $
3  *
4  */
5 @import url("phpwiki.css");
6
7
8 /**
9  * General settings
10  */
11 body {
12   padding-top: 9ex;
13   padding-bottom: 9ex;
14 }
15
16
17 /**
18  * Common toolbar settings
19  * Note that div.toolbar is used for other toolbars besides
20  * #navbar and #actionbar, such as in editpage and removepage
21  */
22 div#navbar, div#actionbar {
23   background: ivory;
24   margin: 0px;
25   padding: 0px;
26   position: fixed;
27   left:  0px;
28   right: 0px;
29   padding-top:    1ex;
30   padding-bottom: 1ex;
31   padding-left:  1em;
32   padding-right: 1em;
33 }
34 hr.toolbar {
35   display: none;
36 }
37
38
39 /**
40  * Navbar
41  */
42 div#navbar {
43   top: 0px;
44   padding-top: 1.5ex;
45   border-bottom: 1px solid #b2b2b2;
46 }
47 div#navbuttons {
48   padding-bottom: 1ex;
49 }
50
51
52 /**
53  * Actionbar
54  */
55 div#actionbar {
56   border-top: 1px solid #b2b2b2;
57   /* kludge for Mozilla */
58     bottom: -1ex;
59     padding-bottom: 0ex;
60 }
61 div#actionbuttons {
62   /* For IE5.1Mac, workaround the Mozilla kludge */
63   padding-bottom: 1ex;
64 }
65 p.editdate { margin-bottom: 0.5ex; }
66
67
68 /* For emacs users
69  *
70  * Local Variables:
71  * mode: c
72  * c-file-style: cc-mode
73  * End:
74  */