]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Sidebar/sidebar.css
fix DEBUG mode elements
[SourceForge/phpwiki.git] / themes / Sidebar / sidebar.css
1 /**
2  * $Id: sidebar.css,v 1.28 2004-11-08 17:09:34 rurban Exp $
3  *
4  * This incarnation of this stylesheet is a complete rewrite from the
5  * ground up.
6  * 
7  * It renders excellent with Mozilla and very good with IE5.1Mac.
8  * 
9  * No floats are used, for older versions of ie (which apparently hang).
10  *
11  * OmniWeb is totally useless with this stylesheet.
12  * This also has not yet been tested against NS4.
13  * 
14  */
15 @import url("../default/phpwiki.css");
16
17 /**
18  * General settings
19  */
20 body {
21   background: #fffff0;
22   font-family: Arial, Helvetica, sans-serif;
23   font-size: 85%; /* The default is too large. But enlarge monospace below */
24   margin: 0 0 0 0;
25 }
26
27 div.wikitext {
28   margin-left: 0.5em;
29   /* "paper" borders */
30   border-top:    1px solid #e8e6df;
31   border-left:   1px solid #e8e6df;
32   border-bottom: 1px solid #b2b2b2;
33   border-right:  1px solid #b2b2b2;
34 }
35
36 /** some border colors
37  ** to play with
38   #d3d2c8;
39   #e8e6df;
40   #6d6a5c;
41   #b3ae97;
42  **/
43 div#logo img {
44   /*  position: fixed; */
45   left: 1ex;
46   top:  1ex;
47 }
48 /*
49 div#clock {
50   position: fixed;
51   left: 0.7ex;
52   top:  31ex;
53 }
54 div#calendar {
55   position: fixed;
56   left:  0.7ex;
57   top:  31ex;
58 }
59 */
60 h1 {
61   /*  position: fixed; */
62   top: 0;
63   background: ivory;
64   padding-top:    0.5ex;
65   padding-bottom: 0.5ex;
66   padding-left:   0.25em;
67   width: 100%;
68   border-bottom: 2px solid black;
69 }
70
71 h1 a.backlinks { text-decoration: none; }
72
73 /**
74  * Common toolbar settings
75  * Note that div.toolbar is used for other toolbars besides
76  * #navbar and #actionbar, such as in editpage and removepage
77  */
78 #navbar hr, #actionbar hr { display: none; }
79 #navbuttons, #actionbuttons, #signin { line-height: 2.4ex; }
80 #navbuttons input { margin-bottom: 0.5ex; }
81 #navbuttons { top: 5.5ex; }
82
83 /**
84  * Action links
85  * bonus for css2 browsers
86  * localise with dynamic css?
87  */
88 /*
89 div#actionbuttons:before {
90   display: block;
91   content: "Actions";
92 }
93 */
94 /* div#actionbuttons { bottom: 10ex; } */
95
96 /**
97  * Sign In
98  */
99 /* div#signin { position: fixed; bottom: 0; } */
100 div#signin { margin-bottom: 1ex; }
101
102 /**
103  * Last edited
104  *
105  * Really the only thing left in in #actionbar
106    at this point is the date, everything else
107    has been plucked out. */
108 p.editdate {
109   background: white;
110   padding: 0.25ex 0.5em;
111   border-top:  1px solid #e8e6df;
112   border-left: 1px solid #e8e6df;
113   border-bottom: 1px solid #d3d2c8;
114   border-right:  1px solid #e8e6df;
115
116   margin-left:  0.5em;
117   margin-right: 1em;
118   margin-top:   0.5ex;
119   margin-bottom: 0.5ex;
120 }
121
122 /*
123 div#actionbar {
124   color: black;
125   background: ivory;
126   border-top: 1px solid #b2b2b2;
127   width: auto;
128   position: fixed;
129   left:  13em;
130   bottom: 0;
131   margin: 0;
132 }
133 */
134
135 /**
136  * Other
137  */
138 .debug {
139   margin-left:  0.5em;
140   left: 0.5em;
141   /*position: fixed;
142   top: 42ex;
143   width: 13em; */
144   max-width: 13em; /* ie ignores this */
145 }
146
147 /*
148 div#xhtml-validator { display: none; }
149  */
150
151 div#xhtml-validator {
152   /*  position: fixed; */
153   right: 0.75em;
154   /*  top: 1ex; */
155 }
156
157 .clear-floats {
158   clear: both;
159 }
160
161 /* Black Links */
162 div.box-title a, div.box-title a:visited, div.box-title a:link {
163   font-weight: normal;
164   text-decoration: none;
165   color: black;
166 }
167 div.box-title a:hover {
168   background-color: #def;
169 }
170
171 /* smaller sidebar links */
172 div.box-data a, div.box-data a:visited, div.box-data a:link {
173   text-decoration: none;
174   color: black;
175   font-size: smaller;
176 }
177
178 div.box-data a:hover {
179   background-color: #def;
180 }
181 /* For emacs users
182  *
183  * Local Variables:
184  * mode: c
185  * c-file-style: cc-mode
186  * End:
187  */