27 lines
596 B
CSS
27 lines
596 B
CSS
#tooltip {
|
|
position: absolute;
|
|
z-index: 3000;
|
|
border: 1px solid #111;
|
|
background-color: rgb(187,187,87);
|
|
background-color: rgba(187,187,87,0.9);
|
|
padding: 5px;
|
|
opacity: 1;
|
|
border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
-webkit-border-radius: 10px;
|
|
text-align: center;
|
|
-moz-box-shadow: 0px 0px 1em;
|
|
-webkit-box-shadow: 0px 0px 1em;
|
|
box-shadow: 0px 0px 1em;
|
|
}
|
|
|
|
#tooltip h4, #tooltip div { margin: 0; font-weight: normal;}
|
|
|
|
#tooltip img {
|
|
width: auto;
|
|
height: 120px;
|
|
border-radius: 6px;
|
|
-moz-border-radius: 6px;
|
|
-webkit-border-radius: 6px;
|
|
}
|