14 lines
346 B
CSS
14 lines
346 B
CSS
.tooltip {
|
|
position: absolute;
|
|
font-family:
|
|
-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
|
|
Arial, sans-serif;
|
|
background: rgba(100, 0, 0, 0.8);
|
|
color: white;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
font-size: 12px;
|
|
pointer-events: none;
|
|
display: none;
|
|
z-index: 1000;
|
|
}
|