-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
69 lines (56 loc) · 1.29 KB
/
style.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
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
/*
Tipz associated stylesheet
Author: Juanma Cabello
Last modification date: 29/02/2010
Version: 0.7
All the general css rules will be here.
Specifics rules (like width of the rows which forms
the arrow or like the color and background color of the content)
are in the .js file itself.
THIS STYLESHEET HAS CSS3 RULES!
*/
.tipz_canvas {
margin: 2px;
position: absolute;
font-family: helvetica;
font-size: 10px;
font-weight: bold;
opacity: 0;
z-index: 99999;
}
.tipz_arrow {
text-align: center;
z-index: 100000;
}
.tipz_row {
height: 1px;
margin: 0 auto 0 auto;
}
.tipz_column {
width: 1px;
float: left;
}
.tipz_content {
padding: 5px;
border-radius: 5px;
}
/* Shadow section */
.tipz_row_shadow {
height: 1px;
margin: 0 auto 0 auto;
-webkit-box-shadow: 0px 3px 5px #888;
-moz-border-radius: 0px 3px 5px #888;
}
.tipz_column_shadow {
width: 1px;
float: left;
-webkit-box-shadow: 0px 3px 5px #888;
-moz-border-radius: 0px 3px 5px #888;
}
.tipz_content_shadow {
padding: 5px;
border-radius: 5px;
-webkit-box-shadow: 0px 3px 5px #888;
-moz-border-radius: 0px 3px 5px #888;
z-index: 99999;
}