0fb84e8133f91fcb339e1b46f6a9e4c0990a626a
[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 }
144
145 .editbar {
146     /* Put a bit of offset between the pageinfo and searchform. Don't use
147      * margin here, that collapses with the floating pageinfo. */
148     /*padding-top: 10px;
149     margin: 5px 0;*/
150     /* Unset the default ul margins */
151     margin-top: 0px;
152     margin-bottom: 0px;
153     /* Put the editbar at the right side (but not over the image there */
154     float: right;
155     margin-right: 220px;
156     /* Prevent weird linebreaks */
157     white-space: nowrap;
158 }
159
160 .editbar form, .editbar form div {
161     display: inline;
162     margin: 0;
163 }
164
165 .editbar li {
166     display: inline;
167     padding: 0;
168     margin: 4px 6px;
169 }
170
171 /****************** Next pages ************************/
172 .WipiContent {
173         float:left;
174         clear:left;
175         width:694px;
176         margin-top:10px;
177         background-image:url('img/perkamentCenter.gif');
178         background-position:center 39px;
179         background-repeat:repeat-y;
180 }
181
182 .WipiTop {
183         width:100%;
184         height:39px;
185         margin:0px;
186         background-image:url('img/perkamentTop.gif');
187         background-repeat:no-repeat;
188         background-color:#5a1800;
189 }
190
191 .WipiText {
192         width:624px; /*694 parent width minus two times 35px padding*/
193         margin:0px;
194         padding:0px 35px 0px 35px;
195 }
196
197 .WipiText p {
198         color:#731E01;
199         font-weight:bold;
200 }
201
202 .WipiBottom {
203         width:100%;
204         height:37px;
205         background-image:url('img/perkamentBottom.gif');
206         background-repeat:no-repeat;
207         background-color:#5a1800;
208 }
209
210 img.Decorative {
211         border:3px double #cc8900;
212 }
213
214 /* vim: set sw=4 sts=4 expandtab */