blob: 615c8bfc68eee135877e33e368236ff102956215 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/*stile header di ogni view*/
.mainMenu {
height:50px;
/* border-top:1px solid #ADD8E6; */
border-bottom:1px solid #4169E1;
padding-top:6px;
margin-bottom:10px;
background:#d1deed;
}
.mainMenuItem {
float:left;
width:60px;
height:40px;
margin-left:5px;
border:1px outset #708090;
background:#4169E1;
text-align:center;
}
.mainMenuItem a {
/* margin:8px 5px 1px 10px; */
display:block;
margin-top:12px;
color:#B0E0E6;
font:bold 14px/1 Verdana,arial;
}
.verticalMenu {
margin-bottom:30px;
margin-left:10px;
/* text-align:right;*/
}
ul#menuBlock {
/* float:right; */
float:left;
margin:0px;
padding:0px;
list-style:none;
height:24px;
}
ul#menuBlock li {
position:relative;
display:block;
float:left;
width:100px;
border:1px outset #D3D3D3;
height:21px;
# height:24px;
text-align:center;
background:#E6E6FA;
padding-top:3px;
}
ul#menuBlock li a {
color:#696969;
font: bold 12px/1 Verdana,arial;
}
ul#menuBlock li ul {
margin:0px;
padding:0px;
list-style:none;
position:absolute;
top:24px;
# top:25px;
left:-1px;
display:none;
}
ul#menuBlock li ul li {
# margin-top:-3px;
}
/*ul#menuBlock li:hover ul{
display:block;
}*/
|