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
|
.menu{
/* Conteneur du menu */
background-image:url("images/menu.jpg");
background-repeat:no-repeat;
background-position:left;
width: 263px;
height: 401px;
}
a.liens_menu {
/*Propriétés des liens du menu*/
color: white;
border:none;
font-weight: bold;
position: relative;
top: 0;
display: block;
padding:6px ;
filter:Alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}
a.liens_menu:hover {
/*Propriétés des liens du menu lors de la sélection*/
background : #000000; /* pour le rollover, mettre la couleur à #666666 au survol */
/* pour IE */
filter: alpha(opacity=50);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
/* pour mozilla */
-moz-opacity: 0.5;
/* pour safari (CSS3) */
opacity: 0.5;
} |
Partager