source: trunk/template/cclear/menubar.css @ 843

Last change on this file since 843 was 820, checked in by chrisaga, 19 years ago

Let's begin the new customizable clear template :-)

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1#menubar {
2    /* Do not put font-size: 90% here for it makes it harder to have correct
3       margin for contentarea */
4    float: left;
5    left: 0px;
6
7    width: 12em;
8    margin: 0 0 10px 1em;
9    padding: 0;
10    /* Fix against the "double margin of a floated item" IE bug */
11    /* Damned: that screws up top_navbar in opera 7.54/Linux! */
12    display: inline;
13    text-align: left; /* follow-up of the "be nice to IE5" rule */
14}
15
16#menubar DL, #menubar DT, #menubar DD {
17    margin: 0; padding: 0; display: block;
18}
19
20/* H2 properties copied here */
21#menubar DT {
22    font-weight: bold; /* default for h2 */
23
24    margin: 0;
25    padding: 5px 10px;
26    font-size: 120%;
27
28    text-align: center;
29}
30
31#menubar UL,
32#menubar HR,
33#menubar FORM,
34#menubar P, /* ooh, careful... */
35#menubar .totalImages {
36    font-size: 92%;
37    margin: 10px 0 10px 10px;
38}
39#menubar UL {
40    list-style-type: square;
41    list-style-position: inside;
42    padding: 0 0 0 2px;
43}
44#menubar UL UL {
45    font-size: 100%;
46    margin-top: 0;
47}
48#menubar LI.selected {
49    font-weight: bold;
50}
51#menubar HR {
52    display: block;
53    margin: 10px auto;
54    width: 90%;
55}
56#menubar FORM P {
57    margin: 5px;
58    font-size: 100%;
59}
60#menubar INPUT {
61    text-indent: 2px;
62}
63
Note: See TracBrowser for help on using the repository browser.