source: trunk/template/yoga/menubar.css @ 960

Last change on this file since 960 was 960, checked in by chrisaga, 18 years ago

improve template : split theme from template itself

rest of the job : template (yoga), themes (clear dark), and php to handle them

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