mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
23 lines
349 B
CSS
23 lines
349 B
CSS
.tooltip {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.tooltiptext {
|
|
position: absolute;
|
|
|
|
background-color: var(--background-color);
|
|
border-radius: 5px;
|
|
color: #fff;
|
|
text-align: center;
|
|
border-radius: 6px;
|
|
padding: 5px;
|
|
z-index: 9999;
|
|
margin-left: -60px;
|
|
transition: opacity 0.3s;
|
|
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.container {
|
|
}
|