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
|
div.menuBox {
border-top: 1px solid gray;
border-bottom: none;
margin-left: 8px;
}
div.menu-active {
border-bottom: 1px solid gray;
border-left: 1px solid gray;
border-right: 1px solid gray;
background: #99ccff;
padding: 4px;
padding-left: 12px;
}
a.menu-active:link, a.menu-active:visited, a.menu-active:active {
color: black;
font-size: 90%;
font-weight: normal;
text-decoration:none;
}
a.menu-active:hover {
color: black;
font-size: 90%;
font-weight: normal;
text-decoration:underline;
}
div.menu-inactive {
background-color: white;
border-left: 1px solid gray;
border-right: 1px solid gray;
border-bottom: 1px solid gray;
padding: 4px;
padding-left: 12px;
}
a.menu-inactive:link, a.menu-inactive:visited, a.menu-inactive:active {
color: black;
font-size: 90%;
font-weight: normal;
text-decoration:none;
}
a.menu-inactive:hover {
color: black;
font-size: 90%;
font-weight: normal;
text-decoration: underline;
}
span.menu-disabled {
color: #336633;
font-size: 90%;
}
div.menu-disabled {
background-color: #6388A5;
border-bottom: 1px solid gray;
border-left: 1px solid gray;
border-right: 1px solid gray;
padding-left: 4px;
}
.menu-separater {
color: black;
font-size: 90%;
font-weight: bold;
padding: 4px;
margin-left: 8px;
padding-top: 24px;
border-left: 1px dashed gray;
border-bottom: 1px solid gray;
}
|