Beautifully crafted timelines that are easy and intuitive to use. http://timeline.knightlab.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.6 KiB
86 lines
1.6 KiB
/* |
|
* TOOLTIP |
|
* Styles for tooltip |
|
* ------------------------------------------------------------------------------------------- */ |
|
|
|
.tooltip { |
|
position: absolute; |
|
z-index: 205; |
|
display: block; |
|
visibility: visible; |
|
padding: 5px; |
|
//font-size: 11px; |
|
opacity: 0; |
|
filter: alpha(opacity=0); |
|
|
|
font-size: @base-font; |
|
font-weight: bold; |
|
line-height: @base-line; |
|
|
|
font-size: 12px; |
|
line-height:12px; |
|
} |
|
.tooltip.in { |
|
opacity: 0.8; |
|
filter: alpha(opacity=80); |
|
} |
|
.tooltip.top { |
|
margin-top: -2px; |
|
} |
|
.tooltip.right { |
|
margin-left: 2px; |
|
} |
|
.tooltip.bottom { |
|
margin-top: 2px; |
|
} |
|
.tooltip.left { |
|
margin-left: -2px; |
|
} |
|
.tooltip.top .tooltip-arrow { |
|
bottom: 0; |
|
left: 50%; |
|
margin-left: -5px; |
|
border-left: 5px solid transparent; |
|
border-right: 5px solid transparent; |
|
border-top: 5px solid #000000; |
|
} |
|
.tooltip.left .tooltip-arrow { |
|
top: 50%; |
|
right: 0; |
|
margin-top: -5px; |
|
border-top: 5px solid transparent; |
|
border-bottom: 5px solid transparent; |
|
border-left: 5px solid #000000; |
|
} |
|
.tooltip.bottom .tooltip-arrow { |
|
top: 0; |
|
left: 50%; |
|
margin-left: -5px; |
|
border-left: 5px solid transparent; |
|
border-right: 5px solid transparent; |
|
border-bottom: 5px solid #000000; |
|
} |
|
.tooltip.right .tooltip-arrow { |
|
top: 50%; |
|
left: 0; |
|
margin-top: -5px; |
|
border-top: 5px solid transparent; |
|
border-bottom: 5px solid transparent; |
|
border-right: 5px solid #000000; |
|
} |
|
.tooltip-inner { |
|
max-width: 200px; |
|
padding: 3px 8px; |
|
color: #ffffff; |
|
text-align: center; |
|
text-decoration: none; |
|
background-color: #000000; |
|
-webkit-border-radius: 4px; |
|
-moz-border-radius: 4px; |
|
border-radius: 4px; |
|
} |
|
.tooltip-arrow { |
|
position: absolute; |
|
width: 0; |
|
height: 0; |
|
}
|
|
|