equal
deleted
inserted
replaced
|
1 /* Navigation - css |
|
2 Basis: http://www.devinrolsen.com/pure-css-vertical-menu/ |
|
3 */ |
|
4 body{behavior:url(/fhiiqm/js/cssHoverFix.htc);} |
|
5 |
|
6 #navio { |
|
7 width:28em; |
|
8 margin-top: 1em; |
|
9 margin-left: 0.5em; |
|
10 font-family:Verdana, Arial, Helvetica, Geneva, sans-serif; |
|
11 font-size:12px; |
|
12 font-style:normal; |
|
13 font-weight:normal; |
|
14 } |
|
15 |
|
16 #navio a:link {color:#000066; text-decoration:none; font-style:normal; font-weight:normal; font-size:12px;} |
|
17 #navio a:visited {color:#000066; text-decoration:none; font-style:normal; font-weight:normal; font-size:12px;} |
|
18 #navio a:active {color:#000066; text-decoration:none; font-style:normal; font-weight:normal; font-size:12px;} |
|
19 |
|
20 /*Main Menu*/ |
|
21 #navio ul {margin:0px; padding:0px; background-color:#FAFAF0;} |
|
22 |
|
23 #navio ul li { |
|
24 height:25px; |
|
25 line-height:25px; |
|
26 list-style:none; |
|
27 padding-left:5px; |
|
28 color:#000066; |
|
29 /* border:#BBDDDD solid; */ |
|
30 border-bottom:#BBDDDD solid; |
|
31 border-width:1px; |
|
32 cursor:pointer; |
|
33 } |
|
34 #navio ul li:hover {background-color:#BBDDDD; position:relative;} |
|
35 #navio ul li:active {background-color:#A4D7D5; position:relative;} |
|
36 |
|
37 #navio ul li#aktuell {background-color:#D6E8F3;} |
|
38 |
|
39 /*Sub Menu*/ |
|
40 #navio ul ul { |
|
41 display:none; |
|
42 position:absolute; |
|
43 left:60px; |
|
44 top:7px; |
|
45 border-bottom:#BBDDDD solid; |
|
46 border-width:1px; |
|
47 background-color:#FAFAFA; |
|
48 } |
|
49 #navio ul li:hover ul {display:block;} |
|
50 |
|
51 #navio ul ul li { |
|
52 width:25em; |
|
53 float:left; |
|
54 } |
|
55 #navio ul ul li:hover {color:#000080; border:none;} |
|
56 |
|
57 /*Sub Menu2*/ |
|
58 #navio li:hover ul li ul {display:none;} |
|
59 |
|
60 #navio ul ul li ul {left:110px; background-color:#EEEEEE;} |
|
61 #navio ul ul li:hover ul {display:block;} |