10 576
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 2 085: | Linha 2 085: | ||
/* Text Hover */ | /* Text Hover */ | ||
.text-hover { | |||
position: relative; | |||
cursor: pointer; | |||
display: inline-block; | |||
} | |||
.text-hover .tooltip-text { | |||
visibility: hidden; | |||
width: max-content; | |||
background-color: #333; | |||
color: #fff; | |||
text-align: center; | |||
padding: 5px; | |||
border-radius: 5px; | |||
position: absolute; | |||
z-index: 1; | |||
bottom: 125%; | |||
left: 50%; | |||
transform: translateX(-50%); | |||
opacity: 0; | |||
transition: opacity 0.3s; | |||
} | |||
.text-hover:hover .tooltip-text { | .text-hover:hover .tooltip-text { | ||
visibility: visible; | visibility: visible; | ||
opacity: 1; | opacity: 1; | ||
} | } |