2022-09-19 09:56:55 +02:00
|
|
|
body {
|
2022-09-20 19:14:04 +02:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
|
|
|
|
margin: auto;
|
|
|
|
max-width: 38rem;
|
|
|
|
padding: 2rem;
|
2022-12-30 18:13:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
border-bottom: 1px dotted black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip .tooltiptext {
|
|
|
|
visibility: hidden;
|
|
|
|
width: 450px;
|
|
|
|
background-color: black;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px 0;
|
|
|
|
/* Position the tooltip */
|
|
|
|
position: absolute;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip:hover .tooltiptext {
|
|
|
|
visibility: visible;
|
2022-09-20 19:14:04 +02:00
|
|
|
}
|