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
|
#menu
{
float: left;
width: 125px;
}
.element_menu
{
background-color: white;
border: 2px solid #9cde93;
margin-bottom: 20px;
padding-top: 0px;
}
.element_menu h3
{
color: #75ace3;
font-family: Arial, "Arial Black", "Times New Roman", Times, serif;
text-align: center;
}
.element_menu ul
{
padding: 0px;
padding-left: 20px;
margin: 0px;
margin-bottom: 25px;
}
.element_menu a
{
text-decoration: none;
color: #B3B3B3;
}
.element_menu a:hover
{
color: #98dc90;
text-decoration: underline;
position: relative;
left : 5px;
}
.element_menu a:active
{
font-weight: bold;
color : #51ce40;
} |