8,960
edits
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
text-decoration: none; | text-decoration: none; | ||
transition: text-decoration 0.3s ease-in-out; | transition: text-decoration 0.3s ease-in-out; | ||
cursor: pointer; /* Change the cursor to indicate clickable text */ | |||
} | } | ||
| Line 12: | Line 13: | ||
.underline-hover .tooltip-text { | .underline-hover .tooltip-text { | ||
visibility: hidden; | visibility: hidden; | ||
background-color: # | background-color: #555; | ||
color: # | color: #fff; | ||
text-align: center; | text-align: center; | ||
padding: 5px 10px; | padding: 5px 10px; | ||
border-radius: 6px; | border-radius: 6px; | ||
/* Positioning and size */ | /* Positioning and size */ | ||
position: absolute; | position: absolute; | ||
| Line 31: | Line 32: | ||
} | } | ||
/* Show the tooltip text when | /* Show the tooltip text when the class 'show-tooltip' is added */ | ||
.underline- | .underline-hover .tooltip-text.show-tooltip { | ||
visibility: visible; | visibility: visible; | ||
opacity: 1; | opacity: 1; | ||
} | } | ||