18 lines
371 B
CSS
18 lines
371 B
CSS
|
|
#tooltip {
|
||
|
|
border: 2px solid #A80002;
|
||
|
|
border-radius: 6px 6px 6px 6px;
|
||
|
|
font-size: 14px;
|
||
|
|
max-width: 205px;
|
||
|
|
padding: 1em;
|
||
|
|
position: absolute;
|
||
|
|
text-shadow: none;
|
||
|
|
z-index: 2000;
|
||
|
|
background: url(../images/bg_bot_img.jpg) repeat !important;
|
||
|
|
color: #333 !important;
|
||
|
|
opacity: 1 !important;
|
||
|
|
}
|
||
|
|
|
||
|
|
a.tooltip:hover {
|
||
|
|
cursor: help;
|
||
|
|
}
|