mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
25 lines
549 B
Text
25 lines
549 B
Text
/* Bubble Bottom */
|
|
.bubble-bottom() {
|
|
.hacks();
|
|
position: relative;
|
|
|
|
&:before {
|
|
pointer-events: none;
|
|
position: absolute;
|
|
z-index: -1;
|
|
content: '';
|
|
border-style: solid;
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-property, transform);
|
|
left: calc(~"50%" - @tipWidth);
|
|
bottom: 0;
|
|
border-width: @tipHeight @tipWidth 0 @tipWidth;
|
|
border-color: @tipColor transparent transparent transparent;
|
|
}
|
|
|
|
&:hover:before,
|
|
&:focus:before,
|
|
&:active:before {
|
|
.prefixed(transform, translateY(@tipHeight));
|
|
}
|
|
}
|