-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtooltipdammy.css
44 lines (38 loc) · 894 Bytes
/
tooltipdammy.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
a.tooltip {
outline: none;
}
a.tooltip strong {
line-height: 30px;
}
a.tooltip:hover {
text-decoration: none;
}
a.tooltip span {
z-index: 10;
display: none;
padding: 14px 20px;
margin-top: 60px;
margin-left: -200px;
width: 300px;
line-height: 16px;
}
a.tooltip:hover span {
display: inline;
position: absolute;
border: 2px solid #FFF;
color: #EEE;
background: #333 url(http://www.menucool.com/tooltip/cssttp/css-tooltip-gradient-bg.png) repeat-x 0 0;
}
.callout {
z-index: 20;
position: absolute;
border: 0;
top: -14px;
left: 150px;
}
/*CSS3 extras*/
a.tooltip span {
border-radius: 2px;
box-shadow: 0px 0px 8px 4px #666;
/*opacity: 0.8;*/
}