feature: stations stats

This commit is contained in:
2024-05-05 13:34:43 +02:00
parent f29c160000
commit 405aab96bd
8 changed files with 178 additions and 94 deletions
+20
View File
@@ -298,3 +298,23 @@ a.a-button {
}
}
}
// Basic tooltip
[data-tooltip]:hover::after,
[data-tooltip]:focus::after {
position: absolute;
transform: translate(10px, -50%);
content: attr(data-tooltip);
color: white;
background-color: #171717;
border-radius: 0.5em;
padding: 0.5em;
margin: 0 0.25em;
max-width: 300px;
z-index: 100;
}
[data-tooltip] {
cursor: help;
}