Spaces:
Sleeping
Sleeping
File size: 527 Bytes
79278ec |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
.tooltip {
position: relative;
display: inline-block;
}
.tooltiptext {
position: absolute;
bottom: 120%;
left: 50%;
transform: translateX(-50%);
background-color: rgb(49, 49, 49);
color: white;
padding: 5px;
border-radius: 4px;
white-space: nowrap;
z-index: 1000;
}
.tooltip .tooltiptext::after {
content: " ";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: var(--text-0-color) transparent transparent transparent;
}
|