Template:Sandbox/Aurelain/Hint/styles.css: Difference between revisions
From Heroes of Might and Magic: Olden Era Official Wiki
No edit summary |
No edit summary |
||
| Line 21: | Line 21: | ||
/* Styling */ | /* Styling */ | ||
max-width: 100px; | |||
background-color: #191b2c; | background-color: #191b2c; | ||
border: solid 1px #d6bc7c; | border: solid 1px #d6bc7c; | ||
| Line 27: | Line 28: | ||
padding: 6px 10px; | padding: 6px 10px; | ||
border-radius: 4px; | border-radius: 4px; | ||
font-size: 0.9em; | font-size: 0.9em; | ||
line-height: 1.2; | line-height: 1.2; | ||
Revision as of 10:52, 23 June 2026
/* Container for the hint */
.wiki-hint {
position: relative;
display: inline;
border-bottom: 1px dotted #555; /* Visual cue that it's hoverable */
cursor: help;
}
.wiki-hint-no-border {
border-bottom: none;
}
/* The hidden floating text */
.wiki-hint-floating {
visibility: hidden;
opacity: 0;
/* Positioning */
position: absolute;
z-index: 100;
/* Styling */
max-width: 100px;
background-color: #191b2c;
border: solid 1px #d6bc7c;
color: #fff;
text-align: center;
padding: 6px 10px;
border-radius: 4px;
font-size: 0.9em;
line-height: 1.2;
/* Smooth fade-in transition */
transition: opacity 0.2s ease, visibility 0.2s ease;
/* Box shadow for a clean look */
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
/* Little arrow pointing down at the content */
.wiki-hint-floating::after {
content: "";
position: absolute;
border-width: 5px;
border-style: solid;
border-color: transparent;
}
/* Reveal on hover */
.wiki-hint:hover .wiki-hint-floating {
visibility: visible;
opacity: 1;
}
/* Placement: top */
.wiki-hint-top .wiki-hint-floating {
bottom: 130%;
left: 50%;
transform: translateX(-50%);
}
.wiki-hint-top .wiki-hint-floating::after {
top: 100%;
left: 50%;
margin-left: -5px;
border-top-color: #d6bc7c;
}
/* Placement: bottom */
.wiki-hint-bottom .wiki-hint-floating {
top: 130%;
left: 50%;
transform: translateX(-50%);
}
.wiki-hint-bottom .wiki-hint-floating::after {
top: 0;
left: 50%;
margin-left: -5px;
margin-top:-10px;
border-bottom-color: #d6bc7c;
}


