| Current Path : /home/ereika83/www/wp-content/plugins/wd-twitter-feed/assets/scss/ |
| Current File : /home/ereika83/www/wp-content/plugins/wd-twitter-feed/assets/scss/_tooltip.scss |
@import 'compass/css3';
// Variables
$tooltip-arrow-width: 5px;
$tooltip-arrow-color: #000;
$tooltip-bg: #000;
$tooltip-color: white;
$tooltip-max-width: 200px;
$tooltip-opacity: 0.8;
$tooltip-border-radius: 5px;
// Base class
.atf-tooltip {
position: absolute;
z-index: 1000;
font-size: 12px;
line-height: 1.4;
width: $tooltip-max-width;
text-align: center;
left: 50%;
margin-left: -$tooltip-max-width/2;
@include opacity( 0 );
@include transition( all 300ms ease-in-out );
&.visible {
@include opacity( 1 );
}
.atf-tooltip-inner {
background-color: $tooltip-bg;
color: $tooltip-color;
display: inline-block;
padding: 5px 7px;
@include border-radius( 4px );
&:after {
content: "";
border-style: solid;
border-width: $tooltip-arrow-width;
border-color: transparent;
border-top-color: $tooltip-arrow-color;
position: absolute;
bottom: -$tooltip-arrow-width*2;
left: 50%;
margin-left: -$tooltip-arrow-width;
}
}
}