2024-05-09 08:56:59 -07:00
|
|
|
div.indent {
|
|
|
|
|
position: relative;
|
|
|
|
|
left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-14 11:54:42 -07:00
|
|
|
.mono {
|
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
|
}
|
|
|
|
|
|
2024-05-10 14:20:43 -07:00
|
|
|
.center-text {
|
|
|
|
|
text-align: center;
|
2024-05-09 08:56:59 -07:00
|
|
|
}
|
2024-05-14 11:54:42 -07:00
|
|
|
|
|
|
|
|
/* Tooltip container */
|
|
|
|
|
.tooltip {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
bottom: 0.1em;
|
|
|
|
|
transition: 0s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tooltip text */
|
|
|
|
|
.tooltip .tooltiptext {
|
|
|
|
|
transition-delay: 0.5s;
|
|
|
|
|
top: -5px;
|
|
|
|
|
left: 115%;
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
width: 300px;
|
|
|
|
|
background-color: white;
|
|
|
|
|
color: rgb(0, 118, 118);
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
border: solid 1px rgb(1, 220, 220);
|
|
|
|
|
|
|
|
|
|
/* Position the tooltip text - see examples below! */
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* adds a speech-bubble thingy at top-left of tooltip */
|
|
|
|
|
.tooltip .tooltiptext::after {
|
|
|
|
|
content: " ";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 20px;
|
|
|
|
|
right: 100%;
|
|
|
|
|
/* To the left of the tooltip */
|
|
|
|
|
margin-top: -5px;
|
|
|
|
|
border-width: 5px;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: transparent rgb(1, 220, 220) transparent transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Show the tooltip text when you mouse over the tooltip container */
|
|
|
|
|
.tooltip:hover .tooltiptext {
|
|
|
|
|
visibility: visible;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip:hover {
|
|
|
|
|
cursor: help;
|
|
|
|
|
}
|