17 lines
350 B
CSS
17 lines
350 B
CSS
#tooltip {
|
|
position: absolute;
|
|
z-index: 3000;
|
|
border: 1px solid #aaa;
|
|
max-width: 350px;
|
|
background-color: #393939;
|
|
padding: 8px;
|
|
color: #fff;
|
|
font-size: 12px;
|
|
font-family: sans-serif;
|
|
border-radius: 8px;
|
|
-moz-border-radius: 8px;
|
|
-webkit-border-radius: 8px;
|
|
opacity: 0.9;
|
|
}
|
|
#tooltip h3, #tooltip div { margin: 0; }
|