-
Notifications
You must be signed in to change notification settings - Fork 0
/
msStyle.css
65 lines (57 loc) · 1009 Bytes
/
msStyle.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
/*Modify Rectangles for tooltip - small overlays over data*/
rect {
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s;
}
/*hover function*/
rect:hover {
fill: blue;
}
#tooltip {
position: absolute;
width: 40px;
height: 20px;
padding: 10px;
background-color: white;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
-webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
pointer-events: none;
}
#tooltip.hidden {
display: none;
}
#tooltip p {
margin: 0;
font-family: sans-serif;
font-size: 30px;
line-height: 20px;
}
body {
background-image:url(gray_jean/gray_jean.png);
}
h1 {
position: relative;
left: 1%;
top: 2%;
font-size: 50px;
font-family: sans-serif
}
h2 {
font-family: sans-serif
}
.axis path,
.axis line {
fill: none;
stroke: black;
shape-rendering: crispEdges;
}
.axis text {
font-family: sans-serif;
font-size: 15px;
}