34 lines
703 B
SCSS
34 lines
703 B
SCSS
$tooltip-translate: 100%;
|
|
$tooltip-margin: 1.5rem;
|
|
|
|
.info-tooltip {
|
|
&:hover:before {
|
|
content: attr(data-tooltip);
|
|
position: absolute;
|
|
background-color: var(--tooltip-bg);
|
|
color: var(--tooltip-text-color);
|
|
padding: 0.5rem;
|
|
border-radius: 0.3rem;
|
|
z-index: 2;
|
|
opacity: 0;
|
|
animation-name: opacityReveal;
|
|
animation-duration: 0.2s;
|
|
animation-fill-mode: forwards;
|
|
animation-delay: 1s;
|
|
}
|
|
}
|
|
|
|
.info-tooltip-top {
|
|
&:hover:before {
|
|
transform: translateY(calc($tooltip-translate * -1));
|
|
margin-bottom: $tooltip-margin;
|
|
}
|
|
}
|
|
|
|
.info-tooltip-bottom {
|
|
&:hover:before {
|
|
transform: translateY($tooltip-translate);
|
|
margin-top: $tooltip-margin;
|
|
}
|
|
}
|