Fix tooltip CSS

This commit is contained in:
2025-11-27 16:40:22 +01:00
parent 62072c3ceb
commit 0e4910137d
2 changed files with 27 additions and 0 deletions

View File

@@ -125,6 +125,18 @@ h2:has(.done.FREED), h3:has(.done.FREED), h4:has(.done.FREED), h5:has(.done.FREE
content: '⮟ ';
}
.footnote-tooltip {
position: 'absolute';
z-index: 1000;
background-color: var(--background-tooltip);
border: 1px solid var(--accent1);
border-radius: = 4px;
padding: 8px 12px;
max-width: 300px;
font-size: calc(var(--font-size) * 0.9);
box-shadow: 1px 1px 1px var(--grey2);
}
:root {
--site-width: 1000px;
--vert-content-margin: 0.3rem;