jquery.tooltip.css
1.37 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
div.jquery-gdakram-tooltip {
width: 340px;
color: white;
font-size: 12px;
position: absolute;
z-index: 10000;
top: 0px;
left: 0px;
display: none;
}
div.jquery-gdakram-tooltip div.content {
-moz-border-radius: 1em;
-webkit-border-radius: 1em;
border-radius: 1em;
background-color: #394E63;
width: 280px;
min-height: 200px;
float: left;
padding: 10px;
color:#899FC4;
line-height:35px;
}
div.jquery-gdakram-tooltip div.content h1 {
font-size: 16px;
border-bottom: 1px solid #C4C4C4;
padding-bottom: 5px;
color: white;
}
div.jquery-gdakram-tooltip div.up_arrow {
background : url('images/up_arrow.png') 40px 0px no-repeat;
width: 100%;
height: 8px;
}
div.jquery-gdakram-tooltip div.down_arrow {
background : url('images/down_arrow.png') 60px 0px no-repeat;
width: 100%;
height: 8px;
}
div.jquery-gdakram-tooltip div.left_arrow {
height: 100%;
}
div.jquery-gdakram-tooltip div.left_arrow {
float:left;
background : url('images/left_arrow.png') 0px 0px no-repeat;
width: 8px;
height: 20px;
position: relative;
top: 40px;
left: 0px;
}
div.jquery-gdakram-tooltip div.right_arrow {
float:right;
background : url('images/right_arrow.png') 0px 0px no-repeat;
width: 8px;
height: 20px;
position: relative;
top: 40px;
right: 20px;
}
.boxshaow{
background: #fff;
box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}