Code : Tout sélectionner
/* liens pour infobulles */
a.info {
z-index:24;
background-color: #FFFFFF;
font-size: 11px;
font-weight: none;
text-decoration: underline;
position: relative;
color: #0000ff;
}
a.info:hover {
background-color: #FFFFFF;
cursor: pointer;
font-size: 11px;
font-weight: none;
color: #ffaf8f; <----- la couleur ici
}
a.info:visited {
background-color: #FFFFFF;
font-size: 11px;
font-weight: none;
color: #0000ff;
}
/* paramètres de l'infobulle */
a.info span {
display: none;
position: absolute;
padding: 3px;
text-align: left;
z-index: 99;
top: 2em;
left: -9999px;
}
a.info:hover span {
display: block;
left: 0;
position: absolute;
top:2em;
left: 2em;
width: 15em;
border: 1px solid #6699cc;
background-color: #eeeeee;
color: #ffaf8f;
text-align: justify;
font-weight: none;
padding: 1px;
}
