Add some spacing to the searchform.
[matthijs/projects/wipi.git] / static / exodus / css / screen.css
1 /*@import url('../../modern/css/screen.css');*/
2 @import url("home.css");
3
4 html, body {
5         margin:0px;
6         padding:0px
7 }
8
9 span.anchor {
10         display: none;
11 }
12
13 html {
14         background-color:#5a1800;
15         color:#cc8900;
16         font-family:verdana, sans-serif;
17         font-size:11px;
18 }
19
20 a {color: #ffd200;}
21 a:visited {color: #ffd200;}
22 a.nonexistent, a.badinterwiki {color: #cc8900;}
23
24 img {
25         border:0px;
26 }
27
28 #menubar li {
29         display: inline;
30         list-style-type: none;
31 }
32
33
34 body {
35         background-image: url('../img/background.jpg');
36         background-repeat: no-repeat;
37         background-position: top center;
38 }
39
40 #header {
41         /* Fit exactly into the header in the background, and push the menu bar in place */
42         padding-top: 70px;
43         height: 40px;
44         /* Center the header */
45         width:1024px;
46         margin:auto;
47 }
48
49 ul#menubar {
50         /* Fit exactly into the bar in the background */
51         padding-top: 5px;
52         height:15px;
53         padding-bottom: 5px;
54         /* Disable all default list-style stuff */
55         padding-left:0px;
56         margin:0;
57         list-style-type:none;
58         list-style-position:outside;
59         /* Set the font size to fit exactly */
60         font-size: 15px;
61         font-weight: bold;
62 }
63
64 /* Display next to each other instead of below */
65 ul#menubar li {
66         display:inline;
67         padding:0px 10px 0px 10px;
68         color:#5F3E06;
69         font-weight:bold;
70 }
71
72 /* Disable underlining and the default blue colour for links in the menubar */
73 ul#menubar li a {
74         color:#5F3E06;
75         text-decoration:none;
76 }
77
78 #page, #footer{
79         /* Center the page and footer, just like the header */
80         width:1024px;
81         margin-right: auto;
82         margin-left: auto;
83 }
84
85 h1 { margin: 0; padding: 0; }
86
87 #footer {
88         /* Put a dotted line at the top of the footer */
89         border-top: 1px dotted #9C9C9C;
90         /* Include some spacing around the line */
91         padding-top: 5px;
92         margin-top: 5px;
93 }
94
95
96 #footerbar {
97 }
98
99 #editor {
100     margin: 0;
101     padding: 2px 20px 20px 20px;
102 }
103
104 #editor-textarea, #editor-help {
105     font-family: monospace;
106     border: 1px solid #8cacbb;  
107     color: black;
108     background-color: white;
109     padding: 3px;
110     width: 100%;
111     margin-top: 0.5em;
112 }
113
114 /* Format the pageinfo bar. */
115 #pageinfo {
116     float: right;
117     margin: 0px 12px;
118 }
119 /* Format the username bar, copied from the modern theme */
120
121 #username {
122     float: left;
123     display: inline;
124     margin: 0px 12px;
125     padding: 0;
126     text-align: right;
127     font-size: 0.82em;
128     white-space: nowrap;
129 }
130
131 #username li {
132     display: inline;
133     padding: 0 0.5em 0 0;
134 }
135
136 #searchform {
137     /* Put the searchform below the pageinfo / username bar */
138     clear: both;
139     float: right;
140     /* Put a bit of offset between the pageinfo and searchform. Don't use
141      * margin here, that collapses with the floating pageinfo. */
142     padding-top: 10px;
143     margin: 0px 12px;
144 }
145
146 .editbar {
147     /* Put a bit of offset between the pageinfo and searchform. Don't use
148      * margin here, that collapses with the floating pageinfo. */
149     /*padding-top: 10px;
150     margin: 5px 0;*/
151     /* Unset the default ul margins */
152     margin-top: 0px;
153     margin-bottom: 0px;
154     /* Put the editbar at the right side (but not over the image there */
155     float: right;
156     margin-right: 220px;
157     /* Prevent weird linebreaks */
158     white-space: nowrap;
159 }
160
161 .editbar form, .editbar form div {
162     display: inline;
163     margin: 0;
164 }
165
166 .editbar li {
167     display: inline;
168     padding: 0;
169     margin: 4px 6px;
170 }
171
172 /****************** Next pages ************************/
173 .WipiContent {
174         float:left;
175         clear:left;
176         width:694px;
177         margin-top:10px;
178         background-image:url('img/perkamentCenter.gif');
179         background-position:center 39px;
180         background-repeat:repeat-y;
181 }
182
183 .WipiTop {
184         width:100%;
185         height:39px;
186         margin:0px;
187         background-image:url('img/perkamentTop.gif');
188         background-repeat:no-repeat;
189         background-color:#5a1800;
190 }
191
192 .WipiText {
193         width:624px; /*694 parent width minus two times 35px padding*/
194         margin:0px;
195         padding:0px 35px 0px 35px;
196 }
197
198 .WipiText p {
199         color:#731E01;
200         font-weight:bold;
201 }
202
203 .WipiBottom {
204         width:100%;
205         height:37px;
206         background-image:url('img/perkamentBottom.gif');
207         background-repeat:no-repeat;
208         background-color:#5a1800;
209 }
210
211 img.Decorative {
212         border:3px double #cc8900;
213 }
214
215 /* vim: set sw=4 sts=4 expandtab */