forked from goldfire/miniTip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminiTip.css
More file actions
70 lines (61 loc) · 1.49 KB
/
miniTip.css
File metadata and controls
70 lines (61 loc) · 1.49 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
/*! miniTip CSS - v1.5.1 */
#miniTip {
/* main styles for tooltip */
background-color: #f8f5ca;
border: 4px solid #eae4b4;
color: #927847;
font-size: .9em;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
/* end editing style */
display: none;
position: absolute;
top: 0;
left: 0;
z-index: 99999;
}
/* title bar style */
#miniTip_t {
background-color: #f5edc2;
font-weight: 700;
padding: 4px 6px;
}
/* main content style */
#miniTip_c { padding: 4px 8px }
/* arrow holder, no need to edit */
#miniTip_a {
width: 0;
height: 0;
position: absolute;
top: 0;
left: 0;
}
/* arrow pointing down, change border-top color to change color of the arrow */
#miniTip .n {
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #eae4b4;
border-bottom: 0;
}
/* arrow pointing up, change border-bottom color to change color of the arrow */
#miniTip .s {
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #eae4b4;
border-top: 0;
}
/* arrow pointing left, change border-right color to change color of the arrow */
#miniTip .e {
border-bottom: 8px solid transparent;
border-top: 8px solid transparent;
border-right: 8px solid #eae4b4;
border-left: 0;
}
/* arrow pointing right, change border-left color to change color of the arrow */
#miniTip .w {
border-bottom: 8px solid transparent;
border-top: 8px solid transparent;
border-left: 8px solid #eae4b4;
border-right: 0;
}